Hi Guys.
I know a lot of you who read this will say "That thread belongs in 'SQL Server Programming'" but if I post this thread in there, they may not know what I am on about because its VB code thats calling the command...
I have a problem where I am trying to call the following SQL command on an SQL Server 2005 db but for some reason its returning DBNull??!! I have used this block of code hundreds of times but now finally have a mental block and feel like throwing the whole lot of the nearest pier.
I call this directly after a successfull new row insert on the database but for some reason I still get DBNull back as ID. I've checked structure of DB table and it does have Key/Index so what am I missing?
All help offered is very much appreciated.
Regards,
Keyth
Come on you reds.
I know a lot of you who read this will say "That thread belongs in 'SQL Server Programming'" but if I post this thread in there, they may not know what I am on about because its VB code thats calling the command...
I have a problem where I am trying to call the following SQL command on an SQL Server 2005 db but for some reason its returning DBNull??!! I have used this block of code hundreds of times but now finally have a mental block and feel like throwing the whole lot of the nearest pier.
Code:
Dim Sql As String = "SELECT @@IDENTITY"
Dim cmdIdentity As New SqlCommand(Sql, sqlCn)
Dim returnval As Integer 'Var to hold new ID ref
Dim previousConnectionState As ConnectionState = sqlCn.State
If sqlCn.State = ConnectionState.Closed Then
sqlCn.Open()
End If
Try
returnval = cmdIdentity.ExecuteScalar()
Catch ex As Exception
MessageBox.Show(ex.Message)
Finally
cmdIdentity.Dispose()
End Try
If previousConnectionState = ConnectionState.Closed Then
sqlCn.Close()
End If
I call this directly after a successfull new row insert on the database but for some reason I still get DBNull back as ID. I've checked structure of DB table and it does have Key/Index so what am I missing?
All help offered is very much appreciated.
Regards,
Keyth
Come on you reds.