blob: b5557a7beb6083e2a2c45310f7fb4f57561d9d47 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef SQLITECOMMITTRANS_H
#define SQLITECOMMITTRANS_H
#include "sqlitequery.h"
#include <QString>
class API_EXPORT SqliteCommitTrans : public SqliteQuery
{
public:
SqliteCommitTrans();
SqliteCommitTrans(bool transactionKw, const QString &name, bool endKw);
SqliteCommitTrans(const SqliteCommitTrans& other);
SqliteStatement* clone();
bool endKw = false;
QString name = QString();
bool transactionKw = false;
protected:
TokenList rebuildTokensFromContents();
};
typedef QSharedPointer<SqliteCommitTrans> SqliteCommitTransPtr;
#endif // SQLITECOMMITTRANS_H
|