PyQt 错误:QSqlDatabasePrivate::database:无法打开数据库
出现以下错误的原因是什么: QSqlDatabasePrivate::database:无法打开数据库:无法打开数据库 文件打开数据库时出错?
代码 100% 正确,当我重新安装 Windows、Python 和 PyQt 时出现此消息。
编辑:我在具有 .db 文件属性的文件夹中具有“只读”标志。当我取消设置并再次打开文件夹属性时,它保持灰色(半选中)。我在文件夹属性中取消设置“使用简单共享”标志,我拥有管理员权限,据我所知,我的计算机上没有病毒。这个讨厌的问题在超级用户上也没有解决方案。如何为该文件夹和文件的 sqlite 设置适当的权限?
What is the cause of following error:
QSqlDatabasePrivate::database: unable to open database: unable to open database
file Error opening database?
Code is 100% correct, this message appeared when I have reinstalled Windows, Python and PyQt.
EDIT: I have "read-only" flag in folder with .db file properties. It stays gray (half-checked) when I unset it and open folder properties again. I have unset "use simple sharing" flag in folder properties, I have administrator rights, there is no viruses on my computer as I can see. This nasty problem doesn't have a solution on Super User too. How to set proper permissions for sqlite for this folder and file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当以下情况发生时会出现上述错误:
您可以从 src/sql/kernel/qsqldatabase.cpp 中的以下代码看到(截至 4.6.2):
看起来只是无法打开文件。这可能是由于权限、文件位置更改等原因而发生的。
The above error happens when:
You can see from the following code in src/sql/kernel/qsqldatabase.cpp (as of 4.6.2):
It looks like it's just failing to open the file. It could happen because of permissions, file location change, etc.
此问题的另一个原因可能是路径的编码。使用
unicode(name)
解决了我的情况。Another reason for this problem might be the encoding of the path. Using
unicode(name)
solved it in my case.