9

I'm using pyodbc with SQL Server 2000.

I want to be able to insert a row and get the auto incremented row id value back? Any ideas?

Here's what I have so far:

cursor.execute("insert into products(id, name) values ('pyodbc', 'awesome library')")
cnxn.commit()
Greg
  • 45,306
  • 89
  • 231
  • 297

1 Answers1

10

Sorry, I asked too soon, it's addressed in their FAQ

Use "SELECT @@IDENTITY".

Greg
  • 45,306
  • 89
  • 231
  • 297