dotConnect for Salesforce Documentation
Devart.Data.Salesforce Namespace / SalesforceConnection Class / SalesforceConnection Constructor / SalesforceConnection Constructor(String)
The connection used to connect to Salesforce.com or Database.com.
Example

In This Topic
    SalesforceConnection Constructor(String)
    In This Topic
    Initializes a new instance of the SalesforceConnection class when given a string containing the connection string.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal connectionString As String _
    )
    public SalesforceConnection( 
       string connectionString
    )

    Parameters

    connectionString
    The connection used to connect to Salesforce.com or Database.com.
    Remarks
    When a new instance of SalesforceConnection is created, the read/write properties are set to the following initial values unless they are specifically set using their associated keywords in the ConnectionString property.
    Properties Initial Value
    ConnectionString connectionString
    ConnectionTimeout 15
    Password empty string ("")
    UserId empty string ("")
    Example
    The following example creates and opens a SalesforceConnection.
    public void CreateSalesforceConnection()
    {
      string myConnString = 
          "Server=login.salesforce.com;User Id= [email protected];Password=mypassword;Security Token=qweASDzcx1234567890rtyui;";
      SalesforceConnection salesforceConnection = new SalesforceConnection(myConnString);
      salesforceConnection.Open();
      //Do something
      salesforceConnection.Close();
    }
    Public Sub CreateSalesforceConnection()
      Dim myConnString As String = _
          "Server=login.salesforce.com;User Id= [email protected];Password=mypassword;Security Token=qweASDzcx1234567890rtyui;"
      Dim salesforceConnection As New SalesforceConnection(myConnString)
      salesforceConnection.Open()
      'Do something
      salesforceConnection.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