I'm sure this must be something simple, but I can't quite work out what's up here...

I'm trying to create a QSqlQuery, and the compiler is giving me this:

error: aggregate ‘QSqlQuery testQuery’ has incomplete type and cannot be defined

This code is in my mainWindow class:

void MainWindow::on_toolButton_clicked()
{
    QString filename;
    filename = QFileDialog::getSaveFileName(this, tr("Save to SQL Database"),
                                            "~/temp",
                                            tr("Files (*.fdb)"));
    QSqlDatabase testDatabase = QSqlDatabase::addDatabase("QSQLITE");
    testDatabase.setDatabaseName(filename);

    //this line won't compile:
    QSqlQuery testQuery;

    testDatabase.close();
    QSqlDatabase::removeDatabase(QSqlDatabase::database().connectionName());
}

Can anyone see what I'm missing here?

link|improve this question

80% accept rate
What are your includes? Seems something's missing, like #include <QSqlQuery> maybe? – Joachim Isaksson Feb 5 at 17:06
@JoachimIsaksson: I thought that, but I'm including both #include <QSqlDatabase> and #include <QSqlError>. Will try QSqlQuery... – M_M Feb 5 at 17:12
@JoachimIsaksson: Fixed it! Turns out it was QSqlQuery. Have added #include <QSqlQuery> and we're compiled. Was working my way through the Qt Sql Programming section in the Reference Documentation and nowhere does it mention QSqlQuery.h! Fancy adding your solution as an answer? – M_M Feb 5 at 17:18
Ok, added it as an answer instead :) – Joachim Isaksson Feb 5 at 18:04
feedback

1 Answer

up vote 2 down vote accepted

The error message indicates that the type SqlQuery is not completely defined. QSqlQuery is defined in

#include <QSqlQuery>

Include that and things should compile ok.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.