使用 C# 将 SQL Server 数据库复制到 .SDF 文件
我的本地网络上运行着一个 SQL Server,并且希望能够将其本地副本作为 SDF 文件签出以便在移动时使用。这可以在 C# 中实现吗?
I have a SQL Server running on my local network, and want to be able to check out a local copy of it as an SDF file to work with on the move. Is this possible to do in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我摆弄了以下内容,认为它应该满足您的需求。
http://sqlcetoolbox.codeplex.com/
我在讨论这个类似的问题时意识到了这一点:
SQL 到 SQL CE:如何读取 SQL 或 Access 数据库并将其写为 SQL CE 数据库?
注意对于 codeplex 项目,您可以访问加载项,它将为您提供所需的最终结果,或者源代码 - 如果您只想查看代码。
I have fiddled with the following and think it should meet your needs.
http://sqlcetoolbox.codeplex.com/
I became aware of it while conversing this similar question:
SQL to SQL CE: How to read an SQL or Access database and write it out as SQL CE database?
Note with the codeplex project you have access to the add-in which will give you the end result you are looking for, or the source code - if you only want to see the code.