dotConnect for Salesforce Documentation
Devart.Data.Salesforce Namespace / SalesforceLoader Class / SalesforceLoader Constructor / SalesforceLoader Constructor(String,SalesforceConnection)
Name of the table that will be loaded.
A SalesforceConnection object that represents the connection to a data source.
Example

SalesforceLoader Constructor(String,SalesforceConnection)
Initializes a new instance of the SalesforceLoader class with table name that will be loaded and a SalesforceConnection object.
Syntax
'Declaration
 
Public Function New( _
   ByVal tableName As String, _
   ByVal connection As SalesforceConnection _
)
 

Parameters

tableName
Name of the table that will be loaded.
connection
A SalesforceConnection object that represents the connection to a data source.
Remarks
Use this constructor to set TableName and Connection properties at the time of initialization.
Example
The following example creates a SalesforceLoader and sets some of its properties. Then prepares data and loads it into the table.
public void CreateMyLoader()
{
  // Create and open connection
  SalesforceConnection conn = new SalesforceConnection(
      "Server=login.salesforce.com;User Id= name@company.com;Password=mypassword;Security Token=qweASDzcx1234567890rtyui;");
  conn.Open();

  // Create loader instance
  SalesforceLoader loader = new SalesforceLoader("loader_test", conn);
     
  // Prepare for loading
  loader.Open();

  // Set row values
  for (int i = 0; i < 10000; i++) {
    loader.SetValue(0, i);
    loader.SetValue(1, "test string");
    loader.SetValue(2, DateTime.Now);
    // Load next table row
    loader.NextRow();
  }

  // Flush buffer and finish loading
  loader.Close();
}
Public Sub CreateMyLoader()
  ' Create and open connection
  Dim conn As SalesforceConnection = new SalesforceConnection( _
      "Server=login.salesforce.com;User Id= name@company.com;Password=mypassword;Security Token=qweASDzcx1234567890rtyui;")
  conn.Open()

  ' Create loader instance
  Dim loader As SalesforceLoader = new SalesforceLoader("loader_test", conn)
     
  ' Prepare for loading
  loader.Open()

  ' Set row values
  Dim i As Integer
  For i = 0 To 10000
    loader.SetValue(0, i)
    loader.SetValue(1, "test string")
    loader.SetValue(2, DateTime.Now)
    ' Load next table row
    loader.NextRow()
  next

  ' Flush buffer and finish loading
  loader.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