Re: [python-win32] odbc version

2009-12-31 Thread Vernon Cole
On Wed, Dec 30, 2009 at 3:10 AM, Robin Becker wrote: > On 29/12/2009 14:34, Vernon Cole wrote: > >> Robin: >> A quick reminder -- odbc (in pywin32) is db api version 1.0 compliant. >> adodbapi is db api version 2.0 compliant, and uses odbc DSN connections >> by >> default if you use a simple

Re: [python-win32] odbc version

2009-12-30 Thread Robin Becker
On 29/12/2009 14:34, Vernon Cole wrote: Robin: A quick reminder -- odbc (in pywin32) is db api version 1.0 compliant. adodbapi is db api version 2.0 compliant, and uses odbc DSN connections by default if you use a simple connection string. Select your db module by deciding what level of api

Re: [python-win32] odbc version

2009-12-29 Thread Vernon Cole
Robin: A quick reminder -- odbc (in pywin32) is db api version 1.0 compliant. adodbapi is db api version 2.0 compliant, and uses odbc DSN connections by default if you use a simple connection string. Select your db module by deciding what level of api compliance you need. If you use adodbapi,

[python-win32] odbc version

2009-12-29 Thread Robin Becker
I'm trying to use the odbc extension in a cross-python version. The problem is that recent pythons/win32 versions have changed the odbc dbi interface. Is there a way to check whether I should be importing dbi to find the type of date to be used or just assuming datetime is used? In the modern