1. 程式人生 > >QT+SQLite 判斷表中是否含有指定欄位

QT+SQLite 判斷表中是否含有指定欄位

// 判斷表 CaseHistory 中是否有欄位 SuccessRate
QString strSql = QString::fromLocal8Bit("select * from sqlite_master where name='CaseHistory' and sql like '%SuccessRate%'");
QSqlQuery query;
query.exec(strSql);
if (!query.next())
{   // 無SuccessRate欄位
    // TODO:
}