1
vote
2answers
544 views
Does SQLite support SCOPE_IDENTITY?
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 ); SELE …
0
votes
