Beispiel #1
0
void Database::commitTransaction()
{
    Query query;
    prepare("COMMIT", query);
    query.commit();
}
Beispiel #2
0
void Database::beginTransaction()
{
    Query query;
    prepare("BEGIN", query);
    query.commit();
}