On Aug 5, 9:55 pm, "John" <J...@nospam.in fovis.co.ukwrot e:
Hi
>
How can I assign a null value to a variable of type OleDb.OleDbConn ection?
>
Thanks
>
Regards
C#'s "null" should be replaced with "Nothing" in Visual Basic.
But if you concerned with terminating the connection you should really
call connection.Clos e() or connection.Disp ose() or just wrap the
connection object in a using block
Comment