Hi,

i try to connect with SA to an iSeries DB2 Database.
I use the pyodbc python module for this.

This piece of code is working:
-------------------------------------------------------------
import pyodbc
conn = pyodbc.connect('DSN=AS400')
curs = conn.cursor()
curs.execute('select count(edokimp_id) from edokimp')
print curs.fetchall()
-------------------------------------------------------------

Now some questions:

Is it possible to use pyodbc, sqlalchemy for an iSeriesDB2 Database?
I have seen in archives that pyodbc, sqlalchemy, MSSQL is working?



Thanks for help.
Christian

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to