嵌入式 QT資料庫使用注意問題

2021-06-20 06:42:25 字數 1063 閱讀 2190

**:

1、路徑問題

2、檢查資料庫驅動問題

#include

#include

int

main(

intargc,

char

*argv)

qsqlquery

query;

if(

query.exec(

"create

table

student(id

intprimary

key,

name

varchar)"))

//新建表student

主鍵是id,名字是可變長度字串

if(

query.exec(

"insert

into

student

values(1,'kongjun')"

))

query.exec(

"insert

into

student

values(2,'liuxiaowei')"

);

query.exec(

"insert

into

student

values(3,'zhushiwei')"

);//插入三條記錄

query.exec(

"select

id,name

from

student

where

id>=

2");

//查詢表中id大於2的記錄的id和姓名

while

(query.next())

指向查詢的第一條記錄,然後每次向後移動一條記錄

return

a.exec();

}

嵌入式資料庫

include include include include int print void para,int columncount,char columnvalue,char columnname 由使用者處理查詢的結果 printf n return0 int main char name 2...

嵌入式資料庫sqlite

自虛擬神話 也許往往大家是不需要像mysql sqlserver這類在複雜的資料庫,那麼sqlite 值得你去嘗試下!什麼是 sqlite sqlite 是一款輕量級的 基於檔案的嵌入式資料庫,2000年就已經誕生,經過多年的發展,直到今天已經成為最流行的,包括google在內的公司在其桌面軟體中亦...

嵌入式資料庫sqlite

自虛擬神話 也許往往大家是不需要像mysql sqlserver這類在複雜的資料庫,那麼sqlite值得你去嘗試下!什麼是 sqlite sqlite 是一款輕量級的 基於檔案的嵌入式資料庫,2000年就已經誕生,經過多年的發展,直到今天已經成為最流行的,包括google在內的公司在其桌面軟體中亦使...