Hi I have problem with simple query: "show engines;".

Qt Code:
  1. QSqlQuery query(database);
  2. query.exec("show engines;");
  3. query.size() //always -1 !!
  4. //for "show collation;" everything is ok
To copy to clipboard, switch view to plain text mode 

This is strange because this query work's fine with MySQL Query Browser or phpMyAdmin. Any idea?