Re: Python ODBC

2007-04-30 Thread Harry George
[EMAIL PROTECTED] writes: > On Apr 29, 11:34 am, Harlin Seritt <[EMAIL PROTECTED]> wrote: > > Is there a Python odbc module that will work on Linux? I have a jdbc > > connection to a DB2 server. I am looking hopefully for an open source > > solution and not a commercial one. > > > > Thanks, > > >

Re: Python ODBC

2007-04-30 Thread kyosohma
On Apr 29, 11:34 am, Harlin Seritt <[EMAIL PROTECTED]> wrote: > Is there a Python odbc module that will work on Linux? I have a jdbc > connection to a DB2 server. I am looking hopefully for an open source > solution and not a commercial one. > > Thanks, > > Harlin I would think the odbc module wou

Re: Python ODBC

2007-04-29 Thread Jorge Mazzonelli
For ODBC connections you can try pyODBC. I didn't test it on Linux but it is said it works on both Windows and POSIX systems. pyODBC--> pyodbc.sourceforge.net The license is MIT License. You can also have a look here: http://sparcs.kaist.ac.kr/~tinuviel/python/database.html since it has various l

Re: python + ODBC + Oracle + MySQL - money

2005-11-10 Thread Grig Gheorghiu
Yes, I did run into the difference in the parameter styles, so I deal with that in the database-specific classes. It's not a huge difficulty though. Grig -- http://mail.python.org/mailman/listinfo/python-list

Re: python + ODBC + Oracle + MySQL - money

2005-11-10 Thread Gerhard Häring
Grig Gheorghiu wrote: > In my testing, I need to connect to Oracle, SQL Server and DB2 on > various platforms. I have a base class with all the common code, and > derived classes for each specific database type using specific database > modules such as cxOracle, mxODBC and pyDB2. The derived classe

Re: python + ODBC + Oracle + MySQL - money

2005-11-10 Thread Grig Gheorghiu
In my testing, I need to connect to Oracle, SQL Server and DB2 on various platforms. I have a base class with all the common code, and derived classes for each specific database type using specific database modules such as cxOracle, mxODBC and pyDB2. The derived classes are pretty thin, containing

Re: python + ODBC + Oracle + MySQL - money

2005-11-10 Thread rios . andy
Well having two different Databases from one app could be painful, but I think that using Python and a "Divide and Conquer" aproach might be your best GPL way of handling this. Start up a set of python Classes that just does the access to the MySQL database. Get these working, just concentrate on b