Bulk Insert In SQL Server CE

后端 未结 2 1287
再見小時候
再見小時候 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: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.

提交回复
热议问题