Qt 6.11 is out! See what's new in the release
blog
اتصال به دیتابیس sqlite
Persian
5
Posts
3
Posters
5.4k
Views
1
Watching
-
@
#include <QSqlDatabase>
#include <QSqlQuery>QSqlDatabase db;
db = QSqlDatabase::addDatabase("QSQLITE");
db.setDatabaseName("mydatabase.db");
if (!db.open())
{
//دسترسی ممکن نیست یا پلاگین اس کیولایت نصب نیست
return;
}QSqlQuery sq = db.exec("create table Table (Field1 int)");
if (sq.lastError().type()==0)
//موفقیت
else
//انجام نشد
@ -
سلام میشه بگید از کجا این مبحثو کامل یاد گرفتین؟
ممنون