在QT C ++中将图像作为blob类型插入数据库

时间:2015-12-09 14:35:29

标签: c++ image qt blob

我尝试从计算机中选择图像后,将图像作为blob类型插入数据库。我有两个按钮。一种是选择图像。另一个是按钮是将图像添加到数据库

选择按钮

// to get an image stored in pc to a qlabel
void EducationSection::on_btnChse_clicked()
{
QString imageFile = QFileDialog ::getOpenFileName(0,"Select Image","/home/","Image Files (*.png)");

  QFileInfo info(imageFile);
  filename = info.fileName();
  QPixmap image (imageFile);
  ui->lblBkImge->setPixmap(image);
  ui->lblBkImge->show();

}

添加按钮

void EducationSection::on_btnAdd_2_clicked()
{

    QByteArray byte;
    QFile file(filename);
    if(file.open(QIODevice::ReadOnly))
    {
        byte = file.readAll();
        file.close();
    }
    QMessageBox :: critical(this,"Error",filename);
    QSqlQuery query;
    query.prepare("insert into eduimage(image) values (:image)");
    query.bindValue(":image",byte);
    if(query.exec())
    {
         QMessageBox :: information(this,"Save","Data Inserted successfully", QMessageBox ::Ok);
    }
    else
    {
         QMessageBox :: critical(this,"Error","Couldn't insert data");
    }
}

这里filename是一个局部变量。选择图像后,它会根据需要显示在标签中。但是数据没有插入。虽然我试图解决这个问题但我做不到。请帮我。提前谢谢。

1 个答案:

答案 0 :(得分:1)

我之前在使用MySQL数据库时遇到过这个问题。我解决这个问题的方法是明确指定绑定类型必须是原始二进制数据。

在您的情况下,请尝试

query.bindValue(":image", byte, QSql::In | QSql::Binary);