0
這是有問題的代碼: 「Connexion的BD確定」問題的SQLite與Qt的
QMessageBox::information(this, "Connexion Open", "Connexion BD Ok!");
QSqlQuery req;
req.exec("SELECT * FROM reservation");
while(req.next()) {
float id = req.value(0).toFloat();
text2->setText(" "+QString::number(id)+" ");
消息看起來完美。 如何獲取DB知道DBMS(SGBD)是SQLite的結果?
謝謝
您已在'while'循環中檢索查詢的結果。你的問題是什麼? – hamstergene