Example #1
0
 public bool SqlBulkInsertDataTable(string targetTable, DataTable dt, SqlBulkCopyColumnMapping[] mappings)
 {
     DataHelper hp = new DataHelper(_connString, _providerName);
     return hp.SqlBulkInsertDataTable(targetTable, dt, mappings);
 }
Example #2
0
 public bool SqlBulkInsertDataTable(string targetTable, DataTable dt)
 {
     DataHelper hp = new DataHelper(_connString, _providerName);
     return  hp.SqlBulkInsertDataTable(targetTable, dt); 
 }