MailChimpLoader Constructor(String,MailChimpConnection)
Initializes a new instance of the
MailChimpLoader class with table name that will be loaded and a
MailChimpConnection object.
The following example creates a
MailChimpLoader and sets some of its properties. Then prepares data and loads it into the table.
public void CreateMyLoader()
{
// Create and open connection
MailChimpConnection conn = new MailChimpConnection(
"api key=8b10fe893c9732d12befe0b7d846ffcb-us10;");
conn.Open();
// Create loader instance
MailChimpLoader loader = new MailChimpLoader("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 MailChimpConnection = new MailChimpConnection( _
"api key=8b10fe893c9732d12befe0b7d846ffcb-us10;")
conn.Open()
' Create loader instance
Dim loader As MailChimpLoader = new MailChimpLoader("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
Reference
MailChimpLoader Class
MailChimpLoader Members
Overload List
Devart.Data.MailChimp.MailChimpLoaderColumn
Devart.Data.MailChimp.MailChimpLoaderColumnCollection