I am unable to do the SCOPE_IDENTITY on a insert query at SQL Mobile.


I need to perform on this query the insert on Client table and to get the ID.

I am programming on Visual Basic on Visual Studio 2005


My code is:
vb Code:
  1. Dim ClientID as Integer
  2.  
  3. Dim sql As String = "INSERT INTO Client(Number) VALUES('5'); SELECT scope_identity()"
  4.  
  5. Dim cmd As New SqlCeCommand(sql, connection)
  6.  
  7.  
  8. connection.Open()
  9.  
  10. ClientID = Convert.ToInt32(cmd.ExecuteNonQuery())
  11.  
  12. connection.Close()
And I get an error like this:

There was an error parsing the query. [ Token line number = 1,Token line offset = 76,Token in error = SELECT ]



Thanks!