SQLITE更新查询失败

时间:2015-11-25 16:29:54

标签: sql qt sqlite qtsql

我正在尝试通过附加QtSQl数据库的新数据来更新表列。我需要通过附加新数据来更新列imgpath

下面是代码,但它总是失败,可能是什么问题?。

QSqlQuery query(db);
query.exec("create table table1 (id integer primary key autoincrement, time varchar(20), imgpath varchar(20))");

query.exec("insert into table1 values(NULL,'00:15:25','img0.jpg')");
query.exec("insert into table1 values(NULL,'00:15:25','img1.jpg')");

bool up = query.exec("update table1 set imgpath=concat(';newImage.jpg',imgpath) where ID=1");
if(up==false)
   qDebug()<<"Update failed";

更新

完整代码:

     QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
     db.setDatabaseName("./newDB");
     db.open();

     QSqlQuery query(db);
     query.exec("create table table1 (id integer primary key autoincrement, time varchar(20), imgpath varchar(20))");

     query.exec("insert into table1 values(NULL,'00:15:25','img0.jpg')");
     query.exec("insert into table1 values(NULL,'00:15:25','img1.jpg')");




     //bool up = query.exec("update table1 set imgpath='newimage.jpg',time='' where ID=1");
     bool up = query.exec("update table1 set imgpath=concat(';newImage.jpg',imgpath)");
     if(up==false){
         qDebug()<<"Update failed";
         qDebug() << db.lastError();
     }

    query.exec("SELECT * FROM table1 limit 100");

     QVector<QStringList> lst;
     while (query.next())
     {
         QSqlRecord record = query.record();
         QStringList tmp;
         for(int i=0; i < record.count(); i++)
         {
             tmp << record.value(i).toString();
         }
         lst.append(tmp);
     }
     foreach (const QStringList &var, lst) {
         qDebug() << var;
     }

1 个答案:

答案 0 :(得分:2)

SQLite不支持concat函数。如果删除

imgpath=concat(';newImage.jpg',imgpath)");

并将其替换为标准的 colName ='Value'语法我打赌一切都会开始工作。如果要将文本附加到当前值,则应该能够使用以下语法执行此操作:

bool up = query.exec("update table1 set imgpath=';newImage.jpg'||imgpath");