Hi,

I try to set a savepoint in this way :
Qt Code:
  1. if ( ! db.transaction() )
  2. return false;
  3.  
  4. //QSqlQuery query( "savepoint sp1", db );
  5. QSqlQuery query( "savepoint sp1;", db );
  6. if ( ! query.exec() )
  7. std::cerr << query.lastError().text() << '\n';
To copy to clipboard, switch view to plain text mode 
And i've the error : No query Unable to fetch row
I no other idea on how to do it (except to use directly the sqlite API)

Do you have a idea on how to do it with the Qt API ?

Thx.