Note: If the BigcommerceConnection goes out of scope, the connection it represents does not close automatically. Therefore, you must explicitly close the connection by calling Devart.Common.DbConnectionBase.Close.
Opening an open connection does nothing.
public void CreateBigcommerceConnection(string myConnString) { BigcommerceConnection bigcommerceConnection = new BigcommerceConnection(myConnString); bigcommerceConnection.Open(); MessageBox.Show("ServerVersion: " + bigcommerceConnection.ServerVersion + "\nState: " + bigcommerceConnection.State.ToString()); bigcommerceConnection.Close(); }
Public Sub CreateBigcommerceConnection(myConnString As String) Dim bigcommerceConnection As New BigcommerceConnection(myConnString) bigcommerceConnection.Open() MessageBox.Show("ServerVersion: " + bigcommerceConnection.ServerVersion _ + ControlChars.Cr + "State: " + bigcommerceConnection.State.ToString()) bigcommerceConnection.Close() End Sub