QSqlQuery::QSqlQuery ( const QString & query = QString(), QSqlDatabase db = QSqlDatabase() )
Constructs a QSqlQuery object using the SQL query and the database db. If db is not specified, or is invalid, the application's default database is used. If query is not an empty string, it will be executed.
Т.е. если используется соединение по умолчанию, которое ты создаёшь не указывая имени соединения, а только драйвер, например:
C++ (Qt)
QSqlDatabase db = QSqlDatabase::addDatabase("QPSQL");