Hello!

I would need to carry out a SELECT NEXTVAL but its does not work. Here is the code.

Qt Code:
  1. query.exec("SELECT NEXTVAL(\'mytable\');")
  2. query.next();
  3. cout << query.value(0).toInt() << "\n";
To copy to clipboard, switch view to plain text mode 

I obtain an error message saying that I am not on a valid record. Indeed, query.next() and query.exec("...") return false but with a lastError().text() empty. The function query.isSelect() also returns false.

What can I do?

Thanks!