将 CSV 导入 SQL Server CE SDF
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要创建一个新的 sdf 文件,这是一个小例子:
System.IO.File.Delete("Test.sdf");
如果您需要了解更多详细信息,您可以阅读此 MSDN(创建数据库通过使用引擎对象)http://msdn.microsoft.com/en-us /library/ms171966.aspx
To create a new sdf File this is a litle example:
System.IO.File.Delete("Test.sdf");
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