Here's a fix for the ODBC problem with Large Objects

From: Bill <bouma(at)cplane(dot)com>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: Here's a fix for the ODBC problem with Large Objects
Date: 2000-08-02 00:45:25
Message-ID: 39876F25.EFA30C95@cplane.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

See my previous posting for the problem statement.

--------------------------------------------------
in file convert.c

change:
case PG_TYPE_LO:
to:
case PG_TYPE_OID:
--------------------------------------------------

Then just make your column type to be "OID" and yer set. This may
not be a good permanent fix if OID is used for stuff other than Large
Objects? But OID is not used elsewhere in the convert function, so
I think it is ok.

Bill <bouma(at)cplane(dot)com>

Browse pgsql-interfaces by date

  From Date Subject
Next Message David Lloyd-Jones 2000-08-02 02:43:25 And Furthermore. Was: PSQL Working, but PGAccess Not Connecting.
Previous Message David Lloyd-Jones 2000-08-02 00:42:12 Re: PSQL Working, but PGAccess Not Connecting.