[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,
> >
>
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
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
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
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
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
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