如何用QT和SQLite实现文件操作
Greetz,
我很好奇如何在 QT 和 SQLite 中使用基本文件操作,并且想知道是否有当前的示例。我的想法是这样的;
- OnAppOpen - 在 :memory: 数据库中创建表(只需调用新文件)
- OnFileSave - 将 :memory: 中的所有内容复制到磁盘上的文件中
- OnFileOpen - 将磁盘上文件中的所有内容复制到 :memory:
- OnFileNew - 删除当前 :memory: 数据库并创建一个新的(OnAppOpen)
或类似
- AppOpen
- FileNew - 与数据库断开连接并使用 :memory: name 创建新的
- FileSave - 获取当前数据库名称
对此的任何帮助将不胜感激,谢谢。
Greetz,
I'm very curious on how to use basic file operations within QT and SQLite and wondering if there are current examples. My ideas are things like;
- OnAppOpen - create tables in an :memory: database (just call new file)
- OnFileSave - copy everything in :memory: into a file on disk
- OnFileOpen - copy everything from file on disk to :memory:
- OnFileNew - delete current :memory: database and Create a new one (OnAppOpen)
or something like
- AppOpen
- FileNew - disconnect from database and create new one with :memory: name
- FileSave - get current database name
Any help with this would be more than appreciated, thx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
dbAdapter 示例(如果您想保存日志本身)。
dbAdapter example if you want to save Logs per se.
Qt 已经将 MySql 作为内置的 SQL 包用于数据库操作。由于许可证不兼容,QSQllite 可能不可用。如果你想使用sqllite,你应该安装使用sqllite服务的开发包。
像你提到的这样的操作绝对可以用 sqllite 完成。
您可以在 http://doc.trolltech.com/4.5/examples.html 找到 sqllite 示例#sql
Qt already has MySql as a built in SQL package for database operations. QSQllite may not be available due to license incompatibilities. If you want to use sqllite, you should install development package for using sqllite services.
Operations like u mentioned are absolutely doable with sqllite.
You can find sqllite examples at http://doc.trolltech.com/4.5/examples.html#sql