I'm having trouble figuring out how to use LAST_INSERT_ID() for a MySQL database in WebMatrix. Can someone show me how to apply it to the code snippet below?

var clothingsize="";
if(IsPost){     
clothingsize =Request["clothingsize"];         

var SQLINSERT = "INSERT INTO fit1 (clothingsize) VALUES (@0)"; }
link|improve this question
Typical SO - some idiot votes your question down because they don't understand it. See here instead: forums.asp.net/t/1752458.aspx/… – Mike Brind Dec 23 '11 at 5:57
Thanks Mike :-D – Chaya Cooper Dec 23 '11 at 6:37
feedback

1 Answer

Can I assume you're using the MySQL .NET Connector?

http://dev.mysql.com/downloads/connector/net

If so, here's a pretty simple example of what you're looking for:

http://forums.mysql.com/read.php?38,98672,98868#msg-98868

After executing your Insert-Command (C#, Connection is stored in conDBConnection):

> string strSQLSelect = "SELECT @@IDENTITY AS 'LastID'"; 
> MySqlCommand dbcSelect = new MySqlCommand(strSQLSelect,
> conDBConnection);  MySqlDataReader dbrSelect =
> dbcSelect.ExecuteReader(); 
> 
> dbrSelect.Read();  int intCounter =
> Int32.Parse(dbrSelect.GetValue(0).ToString()); 
> 
> dbrSelect.Dispose();  conDBConnection.Close();

Happy Coding!

link|improve this answer
I'm not using the Connector, but I think that Mike just answered my question :-) – Chaya Cooper Dec 23 '11 at 6:38
feedback

Your Answer

 
or
required, but never shown

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