I am using pyobbc with SQL Server 2000.
I want to be able to insert a row and return a value with the extension number of an auto increasing number of rows? Any ideas?
Here is what I still have:
cursor.execute("insert into products(id, name) values ('pyodbc', 'awesome library')")
cnxn.commit()
source
share