Copying large amounts of data into a SQL CE database
Posted
by Jekke
on Stack Overflow
See other posts from Stack Overflow
or by Jekke
Published on 2009-05-19T19:16:38Z
Indexed on
2010/04/27
3:33 UTC
Read the original article
Hit count: 372
If I have a large amount of data in memory, what is the best way to copy it into a SQL CE table? The current technology stack is C#, ADO.net, and SQL CE.
My initial idea was to do one INSERT statement for each row of data, but this is time-consuming. Is there an easier way?
© Stack Overflow or respective owner