dotConnect for Zoho Desk Documentation
Devart.Data.ZohoDesk Namespace / ZohoDeskConnection Class / Open Method
Example

Open Method (ZohoDeskConnection)
Opens a Zoho Desk connection with the property settings specified by the ConnectionString.
Syntax
'Declaration
 
Public Overrides Sub Open() 
 
Remarks
The ZohoDeskConnection draws an open connection from the connection pool if one is available. Otherwise, it establishes a new connection to the data source.

Note: If the ZohoDeskConnection goes out of scope, the connection it represents does not close automatically. Therefore, you must explicitly close the connection by calling Close.

Opening an open connection does nothing.

Example
The following example creates a ZohoDeskConnection, opens it, displays some of its properties, and then closes the connection.
public void CreateZohoDeskConnection(string myConnString)
{
  ZohoDeskConnection ZohoDeskConnection = new ZohoDeskConnection(myConnString);
  ZohoDeskConnection.Open();
  MessageBox.Show("ServerVersion: " + ZohoDeskConnection.ServerVersion
    + "\nState: " + ZohoDeskConnection.State.ToString());
  ZohoDeskConnection.Close();
}
Public Sub CreateZohoDeskConnection(myConnString As String)
  Dim ZohoDeskConnection As New ZohoDeskConnection(myConnString)
  ZohoDeskConnection.Open()
  MessageBox.Show("ServerVersion: " + ZohoDeskConnection.ServerVersion _
    + ControlChars.Cr + "State: " + ZohoDeskConnection.State.ToString())
  ZohoDeskConnection.Close()
End Sub
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also