基本上我有一个使用 sqlite3 数据库的 pyqt 应用程序,现在我使用 Cx_Freeze 将其转换为可执行文件。
我发现当数据库和查询作为 .py 运行时,它们运行良好,但是在 cx_freeze 转换为 .exe 之后,gui 可以完美运行,但数据库不响应任何查询。
这是设置脚本的代码:
from cx_Freeze import setup, Executable
# Dependencies are automatically detected, but it might need
# fine tuning.
buildOptions = dict(packages = [],
excludes = [],
includes = ["sip", "PyQt5.QtSql"],
include_files = ["tpaData.db"])
import sys
base = 'Win32GUI' if sys.platform=='win32' else None
executables = [Executable('testTpa.py', base=base)]
setup(
name='Tpa APP',
version = '0.1',
description = 'A PyQt TPA Program',
options = dict(build_exe = buildOptions),
executables = executables
)
这是我用来实例化数据库和应用程序的代码:
def __init__(self, dialog):
Ui_Form.__init__(self)
self.setupUi(dialog)
self.createConnection()
def createConnection(self):
self.db = QtSql.QSqlDatabase.addDatabase('QSQLITE')
self.db.setDatabaseName("tpaData.db")
self.db.open()
self.query = QtSql.QSqlQuery()
self.query.exec_("create table doses(dose text, bolus text, discard text, remaining text, time1 text, time2 text, time3 text, comment text)")
稍后在应用程序中,我使用 query.prepare 方法制作输入字符串,然后使用 query.bind 方法将值绑定到 query.prepare 字符串。最后我使用 query.exec_() 提交准备好的字符串。
在开发环境(.py 文件)中工作,只需发布 cx_freeze 它就会失败。
在此先感谢您的帮助。