Beispiel #1
0
 public bool SqlBulkInsertDataReader(string targetTable, IDataReader dr)
 {
     DataHelper hp = new DataHelper(_connString, _providerName);
     return  hp.SqlBulkInsertDataReader(targetTable, dr); 
 }
Beispiel #2
0
 public bool SqlBulkInsertDataReader(string targetTable, IDataReader dr, SqlBulkCopyColumnMapping[] mappings)
 {
     DataHelper hp = new DataHelper(_connString, _providerName);
     return hp.SqlBulkInsertDataReader(targetTable, dr, mappings); 
 }