Hello, I would like to know how to list query results. I've found usefull
information about insert/update queries...
conn = odbc.odbc("test1_Data")
cursor = conn.cursor()
cursor.execute("INSERT INTO local_cmgenadm
(Application,Run_Date,Run_DateYMD,status) values
(\'rimDev2PrdMdbDistrictPermit\',\'%s\', \'20060731\' ,
\'Good\')")%mytime
cursor.close()
conn.close()
...and now I need to know how to list the results of a select query
thanks
--
View this message in context:
http://www.nabble.com/Listing-query-results-tf2652842.html#a7402743
Sent from the Python - python-win32 mailing list archive at Nabble.com.
_______________________________________________
Python-win32 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-win32