Fixed bug issue #390 ("crash then correct table").

Some functions renamed for better readability.

See pull request #401.
This commit is contained in:
GeorgijK
2015-10-14 22:22:07 +02:00
committed by Martin Kleusberg
parent 8b4eeb3cfa
commit 9d7efcacfa
6 changed files with 31 additions and 30 deletions

View File

@@ -49,10 +49,10 @@ public:
bool attach(const QString& filename, QString attach_as = "");
bool create ( const QString & db);
bool close();
bool setRestorePoint(const QString& pointname = "RESTOREPOINT");
bool save (const QString& pointname = "RESTOREPOINT");
bool revert (const QString& pointname = "RESTOREPOINT");
bool saveAll();
bool setSavepoint(const QString& pointname = "RESTOREPOINT");
bool releaseSavepoint(const QString& pointname = "RESTOREPOINT");
bool revertToSavepoint(const QString& pointname = "RESTOREPOINT");
bool releaseAllSavepoints();
bool revertAll();
bool dump(const QString & filename, const QStringList &tablesToDump, bool insertColNames, bool insertNew, bool exportSchemaOnly);
bool executeSQL ( const QString & statement, bool dirtyDB=true, bool logsql=true);