Esempio n. 1
0
 SmartSqlBulkCopy(SqlConnectionWrapper connectionWrapper, string tableName)
 {
     _connectionWrapper = connectionWrapper;
     _tableName = tableName;
 }
Esempio n. 2
0
 SqlBatchProcess(SqlConnectionWrapper connectionWrapper, string tableName)
 {
     _connectionWrapper = connectionWrapper;
     _tableName = tableName;
     _sqlDataAdapter = new SqlDataAdapter();
 }