How Convert SQL CE 3.5 database to SQLite

2019-03-16 01:40发布

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?

2条回答
啃猪蹄的小仙女
2楼-- · 2019-03-16 02:13
  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
查看更多
时光不老,我们不散
3楼-- · 2019-03-16 02:26

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

查看更多
登录 后发表回答