vote up 1 vote down star
1

I'm trying to perform a simple INSERT and return the identity (auto-incrementing primary key). I've tried

cmd.CommandText = "INSERT INTO Prototype ( ParentID ) VALUES ( NULL ); SELECT SCOPE_IDENTITY();";

and I receive the following error

EnvironmentError: SQLite error
no such function: SCOPE_IDENTITY

Does SQLite support SCOPE_IDENTITY?
If so, how do I use it?
If not, what are my (preferably "thread-safe") alternatives?

flag

60% accept rate

2 Answers

vote up 4 vote down check

Check out the FAQ. The sqlite3_last_insert_rowid() function will do it. Careful of triggers though.

link|flag
Is sqlite3_last_insert_rowid() threadsafe? Is it limited to the current scope like SCOPE_IDENTITY? – Greg Nov 20 '08 at 7:56
Read the documentation. Last identity on the current connection. – Robert Wagner Nov 20 '08 at 8:14
vote up 1 vote down

If you're not using the C interface for programming and want to do the process from an SQL Command try: SELECT last_insert_rowid()

http://www.sqlite.org/lang_corefunc.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.