goschtl
unread,Sep 30, 2008, 3:45:19 AM9/30/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sqlalchemy
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