Bulk Insert In SQL Server CE

后端 未结 2 1286
再見小時候
再見小時候 2020-12-09 22:39

i am new at SQL Server CE and using Visual Studio 2008, SQL Server CE 3.5. I want to know that what the best way of inserting bulk records into SQL Server CE database? Does

相关标签:
2条回答
  • 2020-12-09 23:07

    I have wrapped the bulk insert code in a NuGet library, that you can use like you use SqlBulkCopy today: http://sqlcebulkcopy.codeplex.com

    0 讨论(0)
  • 2020-12-09 23:14

    SQL CE does not have a bulk insert command. For the best raw performance opening a an updateable SqlCeResultset using a TableDirect SqlCeCommand is your fastest bet. It bypasses the query processor altogether, and is actually about as fast as directly writing to a text file.

    0 讨论(0)
提交回复
热议问题