将 sqlite 数据库转换为 sdf 文件
是否有任何工具或方法可以将我的 sqlite 数据库转换为 (*.sdf)?我需要这个来将 iPhone 项目移植到 WP7。
Is there any tool or method present to convert my sqlite database to (*.sdf)? I need this for porting a iPhone project to WP7.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
今天早上发布了一个新工具 (SQLite2CE),其明确目的是将 SQLite 数据库转换为 SDF,同时提供实现类。访问 http://sqlite2ce.codeplex.com/,阅读相关文章并下载该工具。随附的演示和文档展示了如何将生成的数据库和类合并到 Windows Phone 项目中。
This morning a new tool (SQLite2CE) was released which has the express purpose of converting your SQLite databases to SDF while providing implementation classes. Visit http://sqlite2ce.codeplex.com/, read the associated articles and download the tool. The included demo and documentation shows how to incorporate your generated database and classes into a Windows Phone project.
使用 sqlite 的 dump 命令生成 SQL 脚本,然后在目标数据库中运行此 SQL 脚本。
Use sqlite's dump command to generate a SQL script and just run this SQL script in your target database.