I\'m troubled by how the Sql module works with multithreaded application in Qt. http://doc.qt.io/qt-5/threads-modules.html#threads-and-the-sql-module clearly states
I have a database, which tables should viewed in a widget. Seems simple, but I can\'t decide what to du or use.
I\'m looking for an example implementation of QAbstract开发者_运维问答ItemModel to use with QTreeView.
I\'ve recently started found the need to change from the __mysql module to PyQt\'s QSql but have nooo idea whatsoever where to start. All I want to do (for now) is read from a database and print the r
I am trying to update a record and i have this: tableModel->select(); QModelIndex index = ui.tableView->currentIndex();
Good morning. I\'ve tried to compile QIBASE driver to access FireBird database using sqlbrowser from %QTDIR/demos. But after i filled all fields in sqlbrowser and pushed OK button the program crashed
I\'m trying to insert data into a table. Here\'s the code: void AddContacts::saveContact() { QString first_name = ui->lineFirstName->text();
I\'m beginning with PyQt and heard that the Qt comes with a special data base module named QtSQL. The docs of the module, like everything in Qt, cover only C++ usage. In my work, I\'ll need a data bas
My application uses Qt SQL this way QSqlDatabase db = QSqlDatabase::addDatabase(\"QODBC\"); db.setDatabaseName(\"DRIVER={Microsoft Access Driver (*.mdb)};DBQ=\"+QDir::currentPath()+\"/database.mdb\")
I\'m writing an application with Qt for Symbian and I\'m using lots of little SQLite queries to fetch data from the database I\'ve created.