SqlBulkCopy.NotifyAfter Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menentukan jumlah baris yang akan diproses sebelum menghasilkan peristiwa pemberitahuan.
public:
property int NotifyAfter { int get(); void set(int value); };
public int NotifyAfter { get; set; }
member this.NotifyAfter : int with get, set
Public Property NotifyAfter As Integer
Nilai Properti
Nilai bilangan NotifyAfter bulat properti, atau nol jika properti belum ditetapkan.
Contoh
Aplikasi konsol berikut menunjukkan cara memuat data secara massal menggunakan koneksi yang sudah terbuka. Properti NotifyAfter diatur sehingga penanganan aktivitas dipanggil setelah setiap 50 baris disalin ke tabel.
Dalam contoh ini, koneksi pertama kali digunakan untuk membaca data dari tabel SQL Server ke SqlDataReader instans. Kemudian koneksi kedua dibuka untuk menyalin data secara massal. Perhatikan bahwa data sumber tidak harus berada di SQL Server; Anda dapat menggunakan sumber data apa pun yang dapat dibaca ke IDataReader atau dimuat ke DataTable.
Penting
Sampel ini tidak akan berjalan kecuali Anda telah membuat tabel kerja seperti yang dijelaskan dalam Penyiapan Contoh Salinan Massal. Kode ini disediakan untuk mendemonstrasikan sintaks untuk menggunakan SqlBulkCopy saja. Jika tabel sumber dan tujuan berada dalam instans SQL Server yang sama, lebih mudah dan lebih cepat untuk menggunakan pernyataan Transact-SQL INSERT … SELECT
untuk menyalin data.
using Microsoft.Data.SqlClient;
class Program
{
static void Main()
{
string connectionString = GetConnectionString();
// Open a sourceConnection to the AdventureWorks database.
using (SqlConnection sourceConnection =
new SqlConnection(connectionString))
{
sourceConnection.Open();
// Perform an initial count on the destination table.
SqlCommand commandRowCount = new SqlCommand(
"SELECT COUNT(*) FROM " +
"dbo.BulkCopyDemoMatchingColumns;",
sourceConnection);
long countStart = System.Convert.ToInt32(
commandRowCount.ExecuteScalar());
Console.WriteLine("NotifyAfter Sample");
Console.WriteLine("Starting row count = {0}", countStart);
// Get data from the source table as a SqlDataReader.
SqlCommand commandSourceData = new SqlCommand(
"SELECT ProductID, Name, " +
"ProductNumber " +
"FROM Production.Product;", sourceConnection);
SqlDataReader reader =
commandSourceData.ExecuteReader();
// Create the SqlBulkCopy object using a connection string.
// In the real world you would not use SqlBulkCopy to move
// data from one table to the other in the same database.
using (SqlBulkCopy bulkCopy = new SqlBulkCopy(connectionString))
{
bulkCopy.DestinationTableName =
"dbo.BulkCopyDemoMatchingColumns";
// Set up the event handler to notify after 50 rows.
bulkCopy.SqlRowsCopied +=
new SqlRowsCopiedEventHandler(OnSqlRowsCopied);
bulkCopy.NotifyAfter = 50;
try
{
// Write from the source to the destination.
bulkCopy.WriteToServer(reader);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
finally
{
// Close the SqlDataReader. The SqlBulkCopy
// object is automatically closed at the end
// of the using block.
reader.Close();
}
}
// Perform a final count on the destination
// table to see how many rows were added.
long countEnd = System.Convert.ToInt32(
commandRowCount.ExecuteScalar());
Console.WriteLine("Ending row count = {0}", countEnd);
Console.WriteLine("{0} rows were added.", countEnd - countStart);
Console.WriteLine("Press Enter to finish.");
Console.ReadLine();
}
}
private static void OnSqlRowsCopied(
object sender, SqlRowsCopiedEventArgs e)
{
Console.WriteLine("Copied {0} so far...", e.RowsCopied);
}
private static string GetConnectionString()
// To avoid storing the sourceConnection string in your code,
// you can retrieve it from a configuration file.
{
return "Data Source=(local); " +
" Integrated Security=true;" +
"Initial Catalog=AdventureWorks;";
}
}
Keterangan
Properti ini dirancang untuk komponen antarmuka pengguna yang menggambarkan kemajuan operasi penyalinan massal. Ini menunjukkan jumlah baris yang akan diproses sebelum menghasilkan peristiwa pemberitahuan. NotifyAfter Properti dapat diatur kapan saja, bahkan saat operasi penyalinan massal sedang berlangsung. Perubahan yang dilakukan selama operasi penyalinan massal berlaku setelah pemberitahuan berikutnya. Pengaturan baru berlaku untuk semua operasi berikutnya pada instans yang sama.
Jika NotifyAfter diatur ke angka kurang dari nol, akan ArgumentOutOfRangeException dilemparkan.