You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/snippets/Microsoft.Data.SqlClient/SqlBulkCopy.xml
+23-1
Original file line number
Diff line number
Diff line change
@@ -503,15 +503,37 @@ and faster to use a Transact-SQL `INSERT … SELECT` statement to copy the data.
503
503
property.
504
504
</value>
505
505
<remarks>
506
-
<formattype="text/markdown"><![CDATA[
506
+
<formattype="text/markdown">
507
+
<![CDATA[
507
508
508
509
## Remarks
509
510
This value is incremented during the <xref:Microsoft.Data.SqlClient.SqlBulkCopy.SqlRowsCopied> event and does not imply that this number of rows has been sent to the server or committed.
510
511
511
512
This value can be accessed during or after the execution of a bulk copy operation.
513
+
514
+
This value will wrap around and become negative if the number of rows exceeds int.MaxValue. Consider using the <xref:Microsoft.Data.SqlClient.SqlBulkCopy.RowsCopied64> property.
512
515
]]></format>
513
516
</remarks>
514
517
</RowsCopied>
518
+
<RowsCopied64>
519
+
<summary>
520
+
The number of rows processed in the ongoing bulk copy operation.
521
+
</summary>
522
+
<value>
523
+
The long value of the <seecref="P:Microsoft.Data.SqlClient.SqlBulkCopy.RowsCopied64" /> property.
524
+
</value>
525
+
<remarks>
526
+
<formattype="text/markdown">
527
+
<![CDATA[
528
+
529
+
## Remarks
530
+
This value is incremented during the <xref:Microsoft.Data.SqlClient.SqlBulkCopy.SqlRowsCopied> event and does not imply that this number of rows has been sent to the server or committed.
531
+
532
+
This value can be accessed during or after the execution of a bulk copy operation.
533
+
]]>
534
+
</format>
535
+
</remarks>
536
+
</RowsCopied64>
515
537
<System.IDisposable.Dispose>
516
538
<summary>
517
539
Releases all resources used by the current instance of the
0 commit comments