Qt 6.11 is out! See what's new in the release
blog
How to append a record in Microsoft Access file (.mdb)
-
Hi and welcome to the forums.
Cant you just use
https://doc.qt.io/qt-5/sql-sqlstatements.htmlQSqlQuery query; query.exec("INSERT INTO employee (id, name, salary) " "VALUES (1001, 'Thad Beaumont', 65000)");and normal SQL ?
-
Hi and welcome to the forums.
Cant you just use
https://doc.qt.io/qt-5/sql-sqlstatements.htmlQSqlQuery query; query.exec("INSERT INTO employee (id, name, salary) " "VALUES (1001, 'Thad Beaumont', 65000)");and normal SQL ?