Re: Need help with Visual Basic 6 and PostgreSQL - Mailing list pgsql-odbc

From Finn Lassen
Subject Re: Need help with Visual Basic 6 and PostgreSQL
Date
Msg-id 47476539.1080602@AxiomInt.com
Whole thread Raw
In response to Re: Need help with Visual Basic 6 and PostgreSQL  (Richard Broersma Jr <rabroersma@yahoo.com>)
Responses Re: Need help with Visual Basic 6 and PostgreSQL  (Richard Broersma Jr <rabroersma@yahoo.com>)
Re: Need help with Visual Basic 6 and PostgreSQL  ("Thomas H." <me@alternize.com>)
Re: Need help with Visual Basic 6 and PostgreSQL  (Richard Broersma Jr <rabroersma@yahoo.com>)
List pgsql-odbc
A basic question:
In a connection string, if you only specify a driver name ("PostgreSQL
ANSI"), instead of a DSN configured with the ODBC Data Source
Administrator, do any configuration changes made with the ODBC Data
Source Administrator affect the driver itself?
In other words, does registering an ODBC driver automatically make it
subject to any configurations made with ODBC Data Source Administrator?

I still don't understand the:
"ERROR: Column "oid" does not exist;"
I get when executing the " rsOut.Open ..." statement below.
Can the ODBC driver only handle tables with oid columns?

    Dim cn As ADODB.Connection
    Dim rsOut As ADODB.Recordset
    Set cn = New ADODB.Connection
    Set rsOut = New ADODB.Recordset
    With cn
        .ConnectionString = "Driver={PostgreSQL
ANSI};Server=localhost;Port=5432;Database=postgres;Uid=user;Pwd=secret;"
        .Open
        With rsOut
             rsOut.Open """Contact1""", dbOut, adOpenDynamic,
adLockOptimistic, adCmdTable

Finn


pgsql-odbc by date:

Previous
From: Tom Hart
Date:
Subject: odbc varchar/longvarchar default setting
Next
From: Richard Broersma Jr
Date:
Subject: Re: Need help with Visual Basic 6 and PostgreSQL