views:

158

answers:

1

I have a CSV file which I wish to manipulate using SQL Server Compact (CE) 3.5

How can I bulk insert the data into a temporary table?

A: 

You can read the csv data into a DataTable and the load it using http://sqlcebulkcopy.codeplex.com - you could use http://www.csvreader.com/ and avoid loading into a DataTable.

ErikEJ