我想在一個table.how我可以acieve該行的總沒有...如何在qt中使用mysql的count函數?
我寫的代碼如下
QSqlDatabase DB = QSqlDatabase :: addDatabase( 「QMYSQL」);
db.setHostName("localhost");
db.setDatabaseName("Dictionary");
db.setUserName("root");
db.setPassword("cinesoft");
bool ok = db.open();
int ID;
//SELECT COUNT(*) FROM icecream
QString IDnosql="SELECT * FROM Dictionary.TABLE_ENGLISH";
if(ok)
{
QSqlQuery IDquery(db);
IDquery.prepare(IDnosql);
int Id=IDquery.numRowsAffected();
IDquery.exec();
// int Id=IDquery.numRowsAffected();
QMessageBox::information(0,"sucess",QString::number(Id));
}
我使用計數cammand.what我想獲得我的表中的行總數,並希望存儲到一個整數。
請幫我
迫切
非常感謝你的webclectic ....我懂了 –