qt4:如何将表导出到sql脚本?

发布于 2024-12-04 04:41:42 字数 65 浏览 0 评论 0原文

我们可以从 qt 代码中导出表的架构及其数据吗? 或者我们可以使用 sql 脚本(返回表模式的查询)来完成此操作吗?

Can we export schema of a table and it's data from qt code?
Or can we do it with sql script, a query that return a table's schema?

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

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

发布评论

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

评论(1

请帮我爱他 2024-12-11 04:41:43

您可能可以仅使用 QSqlDatabase 提供的功能(通过 tables()records 函数作为起点),但据我所知,您需要使用特定于数据库的查询来获取完整的架构信息。

我认为,最好使用特定的数据库实现工具来完成此操作。例如,SQLite 有一个 .dump 命令就可以做到这一点。 MySQL 有一个专用的 mysqldump 实用程序。 PostgreSQL 有 pg_dump 等...

使用针对特定引擎的预构建工具会更安全。让所有 DDL 语句正确、在正确的时间插入键和触发器、担心编码……是一项艰巨的任务。

You can probably manage to export simple tables in a generic manner using only the functions provided by QSqlDatabase (via the tables() and records functions as a starting point), but as far as I know, you'll need to use database-specific queries to get complete schema information.

This is best done, in my opinion, with your specific database implementation's tools. For instance, SQLite has a .dump command that does just that. MySQL has a dedicated mysqldump utility. PostgreSQL has pg_dump, etc...

It's safer to use pre-built tools for your specific engine. Getting all the DDL statements correct, plugging in the keys and triggers at the right time, worrying about encoding, ... is quite a task.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文