vote up 0 vote down star

I am prototyping an app using ASP.NET MVC and SQL Compact Edition on VS2008. I have 2 entities that have have a many-to-many relationship with each other. When I save objects to the database through hand-crafted SQL I need to find out what their ID is so I can drop a record into the mapping table between the two entities. The auto_increment ID field is in fact the only unique identifier for the tables. So after I've done my insert, how do I re-load the record and grab the newly assigned ID?

RE: Code-is-art, I am using the builtin SqlCeConnection, SqlCeCommand, and SqlCeDataReader objects from the .NET 3.5 library.

flag
What library are you using to access your database? – Ward Werbrouck Apr 26 at 16:34

1 Answer

vote up 0 vote down

I believe you'll have to SELECT your new record -- with a SELECT MAX(thatautoincfield) within the same transaction as your INSERT, you should get its value reliably (unfortunately I don't have a SQL CE install handy to check that, but conceptually it should work...!)

link|flag
When you say in the same transaction - are you suggesting using an actual SQL transaction, or simply adding the SELECT MAX() statement to the end of my INSERT(), and instead of calling ExecuteNonReader(), call ExecuteReader() ? – orion2480 Apr 26 at 16:40
you need "an actual SQL transaction" if the table is being updated concurrently by multiple clients, otherwise the SELECT MAX might get the autoinc field from some row added after the one you just inserted. See msdn.microsoft.com/en-us/library/… for transaction support in SQL CE. Anyway it's just 4 statements in succession: BEGIN TRANSACTION, the INSERT, the SELECT MAX, and the COMMIT, in this order. – Alex Martelli Apr 27 at 17:54

Your Answer

Get an OpenID
or

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