以编程方式在桌面上创建 MS SQL Compact 数据库文件
是否可以在桌面上为 MS SQL Server Compact 创建 SDF 数据库文件?
我想创建一个桌面应用程序,它可以创建 SDF 数据库文件以将其复制到 Windows Mobile 设备。
这可能吗?如何实现?
谢谢
Is it possible to create an SDF database file for MS SQL Server Compact on a desktop.?
I want to craete a desktop application which can create an SDF database file for copying it to a Windows Mobile device.
Is it possible and how?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。引用SqlCeEngine.CreateDatabase 上的 MSDN 页面< /a>:
此后,您只需将 Test.sdf 复制到移动设备上即可。
希望这有帮助。
Yes, this is possible. to quote from the MSDN page on SqlCeEngine.CreateDatabase:
After this, you can just copy Test.sdf onto the mobile device.
Hope this helps.
如何创建?
来自视觉工作室?打开服务器资源管理器并添加新的数据连接。选择 SQL Compact 作为数据源,为其指定文件名,然后单击“创建”。
来自代码?使用 SqlCeEngine 类。给它一个连接字符串并调用 Create。
Create how?
From Visual Studio? Open the Server Explorer and add a new Data Connection. Select SQL Compact as the data source, give it a file name and click Create.
From Code? Use the SqlCeEngine class. Give it a connection string and call Create.