| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654 |
- //
- // System.Data.SqlClient.SqlBulkCopy.cs
- //
- // Author:
- // Nagappan A ([email protected])
- //
- // (C) Novell, Inc 2007
- //
- // Copyright (C) 2007 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Data;
- using System.Data.Common;
- using System.Threading;
- using System.Threading.Tasks;
- using Mono.Data.Tds;
- using Mono.Data.Tds.Protocol;
- namespace System.Data.SqlClient {
- /// <summary>Efficient way to bulk load SQL Server table with several data rows at once</summary>
- public sealed class SqlBulkCopy : IDisposable
- {
- #region Constants
- private const string transConflictMessage = "Must not specify SqlBulkCopyOptions.UseInternalTransaction " +
- "and pass an external Transaction at the same time.";
-
- private const SqlBulkCopyOptions insertModifiers =
- SqlBulkCopyOptions.CheckConstraints | SqlBulkCopyOptions.TableLock |
- SqlBulkCopyOptions.KeepNulls | SqlBulkCopyOptions.FireTriggers;
- #endregion
-
- #region Fields
- private int _batchSize = 0;
- private int _notifyAfter = 0;
- private int _bulkCopyTimeout = 0;
- private SqlBulkCopyColumnMappingCollection _columnMappingCollection = new SqlBulkCopyColumnMappingCollection ();
- private string _destinationTableName = null;
- private bool ordinalMapping = false;
- private bool sqlRowsCopied = false;
- private bool isLocalConnection = false;
- private SqlConnection connection;
- private SqlTransaction externalTransaction;
- private SqlBulkCopyOptions copyOptions = SqlBulkCopyOptions.Default;
- #endregion
- #region Constructors
- public SqlBulkCopy (SqlConnection connection)
- {
- if (connection == null) {
- throw new ArgumentNullException("connection");
- }
-
- this.connection = connection;
- }
- public SqlBulkCopy (string connectionString)
- {
- if (connectionString == null) {
- throw new ArgumentNullException("connectionString");
- }
-
- this.connection = new SqlConnection (connectionString);
- isLocalConnection = true;
- }
- [MonoTODO]
- public SqlBulkCopy (string connectionString, SqlBulkCopyOptions copyOptions)
- {
- if (connectionString == null) {
- throw new ArgumentNullException ("connectionString");
- }
-
- this.connection = new SqlConnection (connectionString);
- isLocalConnection = true;
-
- if ((copyOptions & SqlBulkCopyOptions.UseInternalTransaction) == SqlBulkCopyOptions.UseInternalTransaction)
- throw new NotImplementedException ("We don't know how to process UseInternalTransaction option.");
-
- this.copyOptions = copyOptions;
- }
- [MonoTODO]
- public SqlBulkCopy (SqlConnection connection, SqlBulkCopyOptions copyOptions, SqlTransaction externalTransaction)
- {
- if (connection == null) {
- throw new ArgumentNullException ("connection");
- }
-
- this.connection = connection;
- this.copyOptions = copyOptions;
-
- if ((copyOptions & SqlBulkCopyOptions.UseInternalTransaction) == SqlBulkCopyOptions.UseInternalTransaction) {
- if (externalTransaction != null)
- throw new ArgumentException (transConflictMessage);
- }
- else
- this.externalTransaction = externalTransaction;
-
- if ((copyOptions & SqlBulkCopyOptions.UseInternalTransaction) == SqlBulkCopyOptions.UseInternalTransaction)
- throw new NotImplementedException ("We don't know how to process UseInternalTransaction option.");
-
- this.copyOptions = copyOptions;
- }
- #endregion
- #region Properties
- public int BatchSize {
- get { return _batchSize; }
- set { _batchSize = value; }
- }
- public int BulkCopyTimeout {
- get { return _bulkCopyTimeout; }
- set { _bulkCopyTimeout = value; }
- }
- public SqlBulkCopyColumnMappingCollection ColumnMappings {
- get { return _columnMappingCollection; }
- }
- public string DestinationTableName {
- get { return _destinationTableName; }
- set { _destinationTableName = value; }
- }
- [MonoTODO]
- public bool EnableStreaming {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public int NotifyAfter {
- get { return _notifyAfter; }
- set {
- if (value < 0)
- throw new ArgumentOutOfRangeException ("NotifyAfter should be greater than or equal to 0");
- _notifyAfter = value;
- }
- }
- #endregion
- #region Methods
- public void Close ()
- {
- if (sqlRowsCopied == true) {
- throw new InvalidOperationException ("Close should not be called from SqlRowsCopied event");
- }
- if (connection == null || connection.State == ConnectionState.Closed) {
- return;
- }
- connection.Close ();
- }
- private DataTable [] GetColumnMetaData ()
- {
- DataTable [] columnMetaDataTables = new DataTable [2];
- SqlCommand cmd = new SqlCommand ("select @@trancount; " +
- "set fmtonly on select * from " +
- DestinationTableName + " set fmtonly off;" +
- "exec sp_tablecollations_90 '" +
- DestinationTableName + "'",
- connection);
- if (externalTransaction != null)
- cmd.Transaction = externalTransaction;
- SqlDataReader reader = cmd.ExecuteReader ();
- int i = 0; // Skipping 1st result
- do {
- if (i == 1) {
- columnMetaDataTables [i - 1] = reader.GetSchemaTable ();
- } else if (i == 2) {
- SqlDataAdapter adapter = new SqlDataAdapter ();
- adapter.MissingSchemaAction = MissingSchemaAction.AddWithKey;
- columnMetaDataTables [i - 1] = new DataTable (DestinationTableName);
- adapter.FillInternal (columnMetaDataTables [i - 1], reader);
- }
- i++;
- } while (reader.IsClosed == false && reader.NextResult());
- reader.Close ();
- return columnMetaDataTables;
- }
- private string GenerateColumnMetaData (SqlCommand tmpCmd, DataTable colMetaData, DataTable tableCollations)
- {
- bool flag = false;
- string statement = "";
- int i = 0;
- foreach (DataRow row in colMetaData.Rows) {
- flag = false;
- foreach (DataColumn col in colMetaData.Columns) { // FIXME: This line not required, remove later
- object value = null;
- if (_columnMappingCollection.Count > 0) {
- if (ordinalMapping) {
- foreach (SqlBulkCopyColumnMapping mapping
- in _columnMappingCollection) {
- if (mapping.DestinationOrdinal == i) {
- flag = true;
- break;
- }
- }
- } else {
- foreach (SqlBulkCopyColumnMapping mapping
- in _columnMappingCollection) {
- if (mapping.DestinationColumn == (string) row ["ColumnName"]) {
- flag = true;
- break;
- }
- }
- }
- if (flag == false)
- break;
- }
- if ((bool)row ["IsReadOnly"]) {
- if (ordinalMapping)
- value = false;
- else
- break;
- }
- SqlParameter param = new SqlParameter ((string) row ["ColumnName"],
- ((SqlDbType) row ["ProviderType"]));
- param.Value = value;
- if ((int)row ["ColumnSize"] != -1) {
- param.Size = (int) row ["ColumnSize"];
- }
- short numericPresision = (short)row ["NumericPrecision"];
- if (numericPresision != 255) {
- param.Precision = (byte) numericPresision;
- }
- short numericScale = (short)row ["NumericScale"];
- if (numericScale != 255) {
- param.Scale = (byte) numericScale;
- }
- param.IsNullable = (bool)row ["AllowDBNull"];
- tmpCmd.Parameters.Add (param);
- break;
- }
- i++;
- }
- flag = false;
- bool insertSt = false;
- foreach (DataRow row in colMetaData.Rows) {
- SqlDbType sqlType = (SqlDbType) row ["ProviderType"];
- if (_columnMappingCollection.Count > 0) {
- i = 0;
- insertSt = false;
- foreach (SqlParameter param in tmpCmd.Parameters) {
- if (ordinalMapping) {
- foreach (SqlBulkCopyColumnMapping mapping
- in _columnMappingCollection) {
- if (mapping.DestinationOrdinal == i && param.Value == null) {
- insertSt = true;
- }
- }
- } else {
- foreach (SqlBulkCopyColumnMapping mapping
- in _columnMappingCollection) {
- if (mapping.DestinationColumn == param.ParameterName &&
- (string)row ["ColumnName"] == param.ParameterName) {
- insertSt = true;
- param.Value = null;
- }
- }
- }
- i++;
- if (insertSt == true)
- break;
- }
- if (insertSt == false)
- continue;
- }
- if ((bool)row ["IsReadOnly"]) {
- continue;
- }
- int columnSize = (int)row ["ColumnSize"];
- string columnInfo = "";
- if (columnSize >= TdsMetaParameter.maxVarCharCharacters && sqlType == SqlDbType.Text)
- columnInfo = "VarChar(max)";
- else if (columnSize >= TdsMetaParameter.maxNVarCharCharacters && sqlType == SqlDbType.NText)
- columnInfo = "NVarChar(max)";
- else if (IsTextType(sqlType) && columnSize != -1) {
- columnInfo = string.Format ("{0}({1})",
- sqlType,
- columnSize.ToString());
- } else {
- columnInfo = string.Format ("{0}", sqlType);
- }
- if ( sqlType == SqlDbType.Decimal)
- columnInfo += String.Format("({0},{1})", row ["NumericPrecision"], row ["NumericScale"]);
- if (flag)
- statement += ", ";
- string columnName = (string) row ["ColumnName"];
- statement += string.Format ("[{0}] {1}", columnName, columnInfo);
- if (flag == false)
- flag = true;
- if (IsTextType(sqlType) && tableCollations != null) {
- foreach (DataRow collationRow in tableCollations.Rows) {
- if ((string)collationRow ["name"] == columnName) {
- statement += string.Format (" COLLATE {0}", collationRow ["collation"]);
- break;
- }
- }
- }
- }
- return statement;
- }
- private void ValidateColumnMapping (DataTable table, DataTable tableCollations)
- {
- // So the problem here is that temp tables will not have any table collations. This prevents
- // us from bulk inserting into temp tables. So for now we will skip the validation and
- // let SqlServer tell us there is an issue rather than trying to do it here.
- // So for now we will simply return and do nothing.
- // TODO: At some point we should remove this function if we all agree its the right thing to do
- return;
- // foreach (SqlBulkCopyColumnMapping _columnMapping in _columnMappingCollection) {
- // if (ordinalMapping == false &&
- // (_columnMapping.DestinationColumn == String.Empty ||
- // _columnMapping.SourceColumn == String.Empty))
- // throw new InvalidOperationException ("Mappings must be either all null or ordinal");
- // if (ordinalMapping &&
- // (_columnMapping.DestinationOrdinal == -1 ||
- // _columnMapping.SourceOrdinal == -1))
- // throw new InvalidOperationException ("Mappings must be either all null or ordinal");
- // bool flag = false;
- // if (ordinalMapping == false) {
- // foreach (DataRow row in tableCollations.Rows) {
- // if ((string)row ["name"] == _columnMapping.DestinationColumn) {
- // flag = true;
- // break;
- // }
- // }
- // if (flag == false)
- // throw new InvalidOperationException ("ColumnMapping does not match");
- // flag = false;
- // foreach (DataColumn col in table.Columns) {
- // if (col.ColumnName == _columnMapping.SourceColumn) {
- // flag = true;
- // break;
- // }
- // }
- // if (flag == false)
- // throw new InvalidOperationException ("ColumnName " +
- // _columnMapping.SourceColumn +
- // " does not match");
- // } else {
- // if (_columnMapping.DestinationOrdinal >= tableCollations.Rows.Count)
- // throw new InvalidOperationException ("ColumnMapping does not match");
- // }
- // }
- }
- private void BulkCopyToServer (DataTable table, DataRowState state)
- {
- if (connection == null || connection.State == ConnectionState.Closed)
- throw new InvalidOperationException ("This method should not be called on a closed connection");
- if (_destinationTableName == null)
- throw new ArgumentNullException ("DestinationTableName");
- if (isLocalConnection && connection.State != ConnectionState.Open)
- connection.Open();
-
- if ((copyOptions & SqlBulkCopyOptions.KeepIdentity) == SqlBulkCopyOptions.KeepIdentity) {
- SqlCommand cmd = new SqlCommand ("set identity_insert " +
- table.TableName + " on",
- connection);
- cmd.ExecuteScalar ();
- }
- DataTable [] columnMetaDataTables = GetColumnMetaData ();
- DataTable colMetaData = columnMetaDataTables [0];
- DataTable tableCollations = columnMetaDataTables [1];
- if (_columnMappingCollection.Count > 0) {
- if (_columnMappingCollection [0].SourceOrdinal != -1)
- ordinalMapping = true;
- ValidateColumnMapping (table, tableCollations);
- }
- SqlCommand tmpCmd = new SqlCommand ();
- TdsBulkCopy blkCopy = new TdsBulkCopy ((Tds)connection.Tds);
- if (((Tds)connection.Tds).TdsVersion >= TdsVersion.tds70) {
- string statement = "insert bulk " + DestinationTableName + " (";
- statement += GenerateColumnMetaData (tmpCmd, colMetaData, tableCollations);
- statement += ")";
-
- #region Check requested options and add corresponding modifiers to the statement
- if ((copyOptions & insertModifiers) != SqlBulkCopyOptions.Default) {
- statement += " WITH (";
- bool commaRequired = false;
-
- if ((copyOptions & SqlBulkCopyOptions.CheckConstraints) == SqlBulkCopyOptions.CheckConstraints) {
- if (commaRequired)
- statement += ", ";
- statement += "CHECK_CONSTRAINTS";
- commaRequired = true;
- }
-
- if ((copyOptions & SqlBulkCopyOptions.TableLock) == SqlBulkCopyOptions.TableLock) {
- if (commaRequired)
- statement += ", ";
- statement += "TABLOCK";
- commaRequired = true;
- }
-
- if ((copyOptions & SqlBulkCopyOptions.KeepNulls) == SqlBulkCopyOptions.KeepNulls) {
- if (commaRequired)
- statement += ", ";
- statement += "KEEP_NULLS";
- commaRequired = true;
- }
-
- if ((copyOptions & SqlBulkCopyOptions.FireTriggers) == SqlBulkCopyOptions.FireTriggers) {
- if (commaRequired)
- statement += ", ";
- statement += "FIRE_TRIGGERS";
- commaRequired = true;
- }
-
- statement += ")";
- }
- #endregion Check requested options and add corresponding modifiers to the statement
- blkCopy.SendColumnMetaData (statement);
- }
- blkCopy.BulkCopyStart (tmpCmd.Parameters.MetaParameters);
- long noRowsCopied = 0;
- foreach (DataRow row in table.Rows) {
- if (row.RowState == DataRowState.Deleted)
- continue; // Don't copy the row that's in deleted state
- if (state != 0 && row.RowState != state)
- continue;
- bool isNewRow = true;
- int i = 0;
- foreach (SqlParameter param in tmpCmd.Parameters) {
- int size = 0;
- object rowToCopy = null;
- if (_columnMappingCollection.Count > 0) {
- if (ordinalMapping) {
- foreach (SqlBulkCopyColumnMapping mapping
- in _columnMappingCollection) {
- if (mapping.DestinationOrdinal == i && param.Value == null) {
- rowToCopy = row [mapping.SourceOrdinal];
- SqlParameter parameter = new SqlParameter (mapping.SourceOrdinal.ToString (),
- rowToCopy);
- if (param.MetaParameter.TypeName != parameter.MetaParameter.TypeName) {
- parameter.SqlDbType = param.SqlDbType;
- rowToCopy = parameter.Value = parameter.ConvertToFrameworkType (rowToCopy);
- }
- string colType = string.Format ("{0}", parameter.MetaParameter.TypeName);
- if (colType == "nvarchar" || colType == "ntext" || colType == "nchar") {
- if (row [i] != null && row [i] != DBNull.Value) {
- size = ((string) parameter.Value).Length;
- size <<= 1;
- }
- } else if (colType == "varchar" || colType == "text" || colType == "char") {
- if (row [i] != null && row [i] != DBNull.Value)
- size = ((string) parameter.Value).Length;
- } else {
- size = parameter.Size;
- }
- break;
- }
- }
- } else {
- foreach (SqlBulkCopyColumnMapping mapping
- in _columnMappingCollection) {
- if (mapping.DestinationColumn == param.ParameterName) {
- rowToCopy = row [mapping.SourceColumn];
- SqlParameter parameter = new SqlParameter (mapping.SourceColumn, rowToCopy);
- if (param.MetaParameter.TypeName != parameter.MetaParameter.TypeName) {
- parameter.SqlDbType = param.SqlDbType;
- rowToCopy = parameter.Value = parameter.ConvertToFrameworkType (rowToCopy);
- }
- string colType = string.Format ("{0}", parameter.MetaParameter.TypeName);
- if (colType == "nvarchar" || colType == "ntext" || colType == "nchar") {
- if (row [mapping.SourceColumn] != null && row [mapping.SourceColumn] != DBNull.Value) {
- size = ((string) rowToCopy).Length;
- size <<= 1;
- }
- } else if (colType == "varchar" || colType == "text" || colType == "char") {
- if (row [mapping.SourceColumn] != null && row [mapping.SourceColumn] != DBNull.Value)
- size = ((string) rowToCopy).Length;
- } else {
- size = parameter.Size;
- }
- break;
- }
- }
- }
- i++;
- } else {
- rowToCopy = row [param.ParameterName];
- string colType = param.MetaParameter.TypeName;
- /*
- If column type is SqlDbType.NVarChar the size of parameter is multiplied by 2
- FIXME: Need to check for other types
- */
- if (colType == "nvarchar" || colType == "ntext" || colType == "nchar") {
- size = ((string) row [param.ParameterName]).Length;
- size <<= 1;
- } else if (colType == "varchar" || colType == "text" || colType == "char") {
- size = ((string) row [param.ParameterName]).Length;
- } else {
- size = param.Size;
- }
- }
- if (rowToCopy == null)
- continue;
- blkCopy.BulkCopyData (rowToCopy, isNewRow, size, param.MetaParameter);
-
- if (isNewRow)
- isNewRow = false;
- } // foreach (SqlParameter)
- if (_notifyAfter > 0) {
- noRowsCopied ++;
- if (noRowsCopied >= _notifyAfter) {
- RowsCopied (noRowsCopied);
- noRowsCopied = 0;
- }
- }
- } // foreach (DataRow)
- blkCopy.BulkCopyEnd ();
- }
- private bool IsTextType(SqlDbType sqlType)
- {
- return (sqlType == SqlDbType.NText ||
- sqlType == SqlDbType.NVarChar ||
- sqlType == SqlDbType.Text ||
- sqlType == SqlDbType.VarChar ||
- sqlType == SqlDbType.Char ||
- sqlType == SqlDbType.NChar);
- }
- public void WriteToServer (DataRow [] rows)
- {
- if (rows == null)
- throw new ArgumentNullException ("rows");
- if (rows.Length == 0)
- return;
- DataTable table = new DataTable (rows [0].Table.TableName);
- foreach (DataColumn col in rows [0].Table.Columns) {
- DataColumn tmpCol = new DataColumn (col.ColumnName, col.DataType);
- table.Columns.Add (tmpCol);
- }
- foreach (DataRow row in rows) {
- DataRow tmpRow = table.NewRow ();
- for (int i = 0; i < table.Columns.Count; i++) {
- tmpRow [i] = row [i];
- }
- table.Rows.Add (tmpRow);
- }
- BulkCopyToServer (table, 0);
- }
- public void WriteToServer (DataTable table)
- {
- BulkCopyToServer (table, 0);
- }
- public void WriteToServer (IDataReader reader)
- {
- DataTable table = new DataTable ("SourceTable");
- SqlDataAdapter adapter = new SqlDataAdapter ();
- adapter.FillInternal (table, reader);
- BulkCopyToServer (table, 0);
- }
- public void WriteToServer (DataTable table, DataRowState rowState)
- {
- BulkCopyToServer (table, rowState);
- }
- [MonoTODO]
- public void WriteToServer (DbDataReader reader)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public Task WriteToServerAsync (DbDataReader reader)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public Task WriteToServerAsync (DbDataReader reader, CancellationToken cancellationToken)
- {
- throw new NotImplementedException ();
- }
- private void RowsCopied (long rowsCopied)
- {
- SqlRowsCopiedEventArgs e = new SqlRowsCopiedEventArgs (rowsCopied);
- if (null != SqlRowsCopied) {
- SqlRowsCopied (this, e);
- }
- }
- #endregion
- #region Events
- public event SqlRowsCopiedEventHandler SqlRowsCopied;
- #endregion
- void IDisposable.Dispose ()
- {
- //throw new NotImplementedException ();
- if (isLocalConnection) {
- Close ();
- connection = null;
- }
- }
- }
- }
|