Re: [INTERFACES] ODBC: OID column in views - Mailing list pgsql-interfaces

From Byron Nikolaidis
Subject Re: [INTERFACES] ODBC: OID column in views
Date
Msg-id 3778F732.6C2A0D5D@solipsys.com
Whole thread Raw
In response to RE: [INTERFACES] ODBC: OID column in views  (Dave Page <dpage@vale-housing.co.uk>)
List pgsql-interfaces

Dave Page wrote:

> >
> > I'm not sure what you mean by "the driver will always attempt
> > to retrieve the oid
> > column"...  What is the driver doing?  If it is sending
> > another query, could you show
> > me exactly what because its been a while since I looked at the code.
>
> The commlog shows the following when the query 'SELECT * FROM pg_tables;' is
> executed via DAO (I've just thought though, would it be the driver or
> perhaps DAO that is expanding the wildcard?):
>
> conn=175915324, query='SELECT "oid" ,"tablename" ,"tableowner" ,"hasindexes"
> ,"hasrules" ,"hastriggers"  FROM "pg_tables" '
> ERROR from backend during send_query: 'ERROR:  system column oid not
> available - pg_tables is a view'
> STATEMENT ERROR: func=SC_execute, desc='', errnum=1, errmsg='Error while
> executing the query'
>
> Presumably if it's DAO that's expanding the wildcard, it would still be the
> driver reporting the existance of the oid column?
>

Ahhhh,  I see now.  DAO is calling SQLColumns() on the "pg_tables" table.  Since
the driver realizes it is a system table (i.e., because it begins with pg_), it
automatically throws the OID column in there.  There is no option to turn that
off and it is not intelligent enough to check whether it is a view.

The idea was that when looking at System Tables, you would always be interested
in the oid column so the driver should show it.

Wait a minute, I don't remember any "pg_tables" view???  Is that really a system
table, or something you created?  If its something you created, you can just not
start it with "pg_" and problem solved!

Another possibility is to use SQLTables() meta function to get the tables
instead of using a low level query.  Theoretically, it would be more portable.

Byron




pgsql-interfaces by date:

Previous
From: Dave Page
Date:
Subject: RE: [INTERFACES] ODBC: OID column in views
Next
From: "Ken J. Wright"
Date:
Subject: Re: [INTERFACES] lo_export & pgaccess