如何将 SQL CE 3.5 数据库转换为 SQLite

发布于 2024-10-22 01:57:14 字数 142 浏览 1 评论 0原文

我在 Visual Studio 10 中使用 SQL CE 3.5 启动了一个项目。但是现在我发现数据库非常慢。我在 SQLite 上做了一些测试,这要快得多。

有没有一种方法可以轻松地将 SQL CE 3.5 (sdf) 数据库转换为 SQLite?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

软的没边 2024-10-29 01:57:14

我有一个工具可以将整个 SQL Compact 文件“转储”为 SQL 脚本,然后您可以针对 SQLite 数据库运行该工具 - http: //exportsqlce.codeplex.com

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

疏忽 2024-10-29 01:57:14
  1. 从 SQL CE 导出 CSV 文件,导入 SQLite,或
  2. 使用 ODBC 连接到两个数据库并将数据从一个数据库移动到另一个数据库
  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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文