摘要:
由于Mac系统更新,导致我之前的Xcode不能用了,然后我就把Xcode卸载了,结果悲剧了,Qt无法使用了,提示无法识别Apple 的clang编译器。 使用Qt前,必须先安装Xcode!!!! 关闭Qt Creator,在终端输入以下内容运行即可。 sudo xcode-select -s /Ap 阅读全文
摘要:
在Qt中想要关闭数据库,并删除连接时发现出错,代码如下: 1 if(db.isOpen()) 2 { 3 QString connection; 4 connection = db.connectionName(); 5 db.close(); 6 db = QSqlDatabase(); 7 db 阅读全文