Hej Hittade svaret själv:Return value
Går det att använda ExecuteScalar mot mySql och få tillbaka ID:et? I MS SQL kallat
SCOPE_IDENTITY(). Finns nått liknande för mySQL?
Vill alltså lätt få id:et för den nyskapade recordsetet.
Tack
MarcusSv: Return value
You can use similar techniques to retrieve server-generated
values from other databases as well. MySQL developers can use
the "LAST_INSERT_ID()" instead of "@@IDENTITY" to retrieve the
last auto-increment value generated. Oracle developers can use
"SELECT SequenceName.CURRVAL FROM DUAL" to retrieve the last
value generated for a sequence on the connection.
Alltså select LAST_INSERT_ID() fungerar bra.