S
steve
Hi All
I have a VB.net 2005 application which uses Sql server express 2005
When I read or write data to sql server I always close the connection immediately after finishing using...
---------------------------------------------------
If Not IsNothing(con) Then
con.Dispose()
con = Nothing
End If
-----------------------------------------------------
When I go into Sql server management studio to detach the database etc there is usually always at least 2 open connections showing in the studio
Close cursor on commit = false
autoclose = false
What am I missing??
Regards
Steve
I have a VB.net 2005 application which uses Sql server express 2005
When I read or write data to sql server I always close the connection immediately after finishing using...
---------------------------------------------------
If Not IsNothing(con) Then
con.Dispose()
con = Nothing
End If
-----------------------------------------------------
When I go into Sql server management studio to detach the database etc there is usually always at least 2 open connections showing in the studio
Close cursor on commit = false
autoclose = false
What am I missing??
Regards
Steve