How Convert SQL CE 3.5 database to SQLite

百般思念 提交于 2019-12-04 09:28:11

问题


I started a project using SQL CE 3.5 in Visual Studio 10. But now I found out that the database is very slow. I did some testing on SQLite and thi is much faster.

Is there a way that I easily can convert de SQL CE 3.5 (sdf) database to SQLite?


回答1:


I have a tool to "dump" an entire SQL Compact file as SQL script, that you can then run against a SQLite db - http://exportsqlce.codeplex.com




回答2:


  1. Export CSV file(s) from SQL CE, import into SQLite, or
  2. Use ODBC to connect to both databases and move data from one to the other


来源:https://stackoverflow.com/questions/5303797/how-convert-sql-ce-3-5-database-to-sqlite

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!