README.md (653B)
1 BulkWriters256 2 -------- 3 Last 128 "bulk writers". This library along with `BulkWriters128` would 4 ideally belong in the `SQLServer` library; but due to very long 5 compilation times, they have been split out. 6 This library contains a wrappers around `Microsoft.SqlClient.SqlBulkCopy` 7 in a way that makes writing to tables type safe as well as a way that 8 automatically avoids common issues like `NULL`s in non-`NULL` columns, 9 truncation of variable-width values, and issues related to 10 `NUMERIC_ROUNDABORT`. 11 This library also writes errors to an error table; so if an issue 12 arises that is manifests itself as an error, writing to the table can 13 still continue.