Converting a sqlite database to sdf file
Is there any tool or method present to convert my s开发者_如何学编程qlite database to (*.sdf)? I need this for porting a iPhone project to WP7.
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.
Use sqlite's dump command to generate a SQL script and just run this SQL script in your target database.
精彩评论