RE: RE: [PATCHES] ODBC Patch for OJs/Large Querys & Rows

From: Dave Page <dpage(at)vale-housing(dot)co(dot)uk>
To: "'Hiroshi Inoue'" <Inoue(at)tpf(dot)co(dot)jp>
Cc: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>, "'pgsql-odbc(at)postgresql(dot)org'" <pgsql-odbc(at)postgresql(dot)org>
Subject: RE: RE: [PATCHES] ODBC Patch for OJs/Large Querys & Rows
Date: 2001-01-25 10:40:45
Message-ID: 8568FC767B4AD311AC33006097BCD3D61A2923@woody.vale-housing.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces pgsql-odbc

> -----Original Message-----
> From: Hiroshi Inoue [mailto:Inoue(at)tpf(dot)co(dot)jp]
> Sent: 25 January 2001 10:15
> To: Dave Page
> Cc: Bruce Momjian; 'pgsql-odbc(at)postgresql(dot)org'
> Subject: Re: [ODBC] RE: [PATCHES] ODBC Patch for OJs/Large
> Querys & Rows
>
> It's not me who would send such queries. For exmaple, intelligent
> DAO/RDO/ADO could see that a long or an oj query is allowed and
> send such queries automatically in some cases though I don't know
> if it would really occur or not.

Yes, that could happen, though in reality I suspect it proably wouldn't as
(in my experience - I may be wrong) those technologies do little more than
putting SELECT * FROM in front of a given table name and generating query
based updates.

I suspect that more problems may be caused for apps like MS Query or Seagate
Crystal Reports which might attempt to use outer joins on an older database
(actually Query just enables/disables the relevant join options). As far as
I can tell, the driver doesn't check the backend version (despite returning
the DBMS version which is currently hardcoded), so we'd either need to add a
7.1 protocol option (not nice as it isn't really a different protocol) or do
a SELECT VERSION() on connect to get the exact version string and figure out
what is/isn't possible from that.

I'll look into it but I'm on the wrong end of the learning curve here!

Regards, Dave.

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Peter T Mount 2001-01-25 13:26:50 Re: Re: [INTERFACES] jdbc driver: Support for 'BOOL'
Previous Message Michael Stephenson 2001-01-25 09:54:41 Re: [PATCHES] Re: [INTERFACES] Patch for JDBC timestamp problems

Browse pgsql-odbc by date

  From Date Subject
Next Message Dave Page 2001-01-25 11:23:27 Yet another ODBC patch!
Previous Message Hiroshi Inoue 2001-01-25 10:15:19 Re: RE: [PATCHES] ODBC Patch for OJs/Large Querys & Rows