将 CSV 导入 SQL Server CE SDF

发布于 2024-11-02 05:34:05 字数 224 浏览 0 评论 0原文

我正在尝试将 csv 文件导入 ac# mvc3 Web 应用程序中的 SQL 服务器 CE sdf 数据库。我知道我需要先读取csv文件,然后将文件逐行传输到sql数据库中。我对编程非常陌生,需要一些关于如何做到这一点的指导。

我听说 Sql Compact Bulk Copy 是可行的方法,但我不明白如何获取 CSV 文件以便可以使用它。如果有人能阐明这一点,我将非常感激。

我希望这是有道理的。

I am trying to import a csv file into an SQL sever CE sdf database in a c# mvc3 web app. I understand that I need to read the csv file first and then transfer the file line by line into the sql database. I am very new to programming and need some guidence on how to do this.

I have heard Sql Compact Bulk Copy is the way to go, but I do not understand how to get the CSV file so it can be used by this. If anyone can shed some light on this I would be very greatful.

I hope this makes sense.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

a√萤火虫的光℡ 2024-11-09 05:34:05

要创建一个新的 sdf 文件,这是一个小例子:

// if exists delete the file 

System.IO.File.Delete("Test.sdf");

string cnn = "Data Source = 'TestDB.sdf'; LCID=1033; Password = <ThePassword>;";
SqlCeEngine ceEngine = new SqlCeEngine(cnn);
ceenngine.CreateDatabase();`

如果您需要了解更多详细信息,您可以阅读此 MSDN(创建数据库通过使用引擎对象)http://msdn.microsoft.com/en-us /library/ms171966.aspx

To create a new sdf File this is a litle example:

// if exists delete the file 

System.IO.File.Delete("Test.sdf");

string cnn = "Data Source = 'TestDB.sdf'; LCID=1033; Password = <ThePassword>;";
SqlCeEngine ceEngine = new SqlCeEngine(cnn);
ceenngine.CreateDatabase();`

If you need to know more details you can read this MSDN(Create a Database by Using the Engine Object) http://msdn.microsoft.com/en-us/library/ms171966.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文