diff options
Diffstat (limited to 'SQLiteStudio3/coreSQLiteStudio/populateworker.cpp')
| -rw-r--r-- | SQLiteStudio3/coreSQLiteStudio/populateworker.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/SQLiteStudio3/coreSQLiteStudio/populateworker.cpp b/SQLiteStudio3/coreSQLiteStudio/populateworker.cpp index 0b08526..f25a6ac 100644 --- a/SQLiteStudio3/coreSQLiteStudio/populateworker.cpp +++ b/SQLiteStudio3/coreSQLiteStudio/populateworker.cpp @@ -46,6 +46,13 @@ void PopulateWorker::run() if (i == 0 && !beforePopulating()) return; + if (isInterrupted()) + { + db->rollback(); + emit finished(false); + return; + } + args.clear(); for (PopulateEngine* engine : engines) args << engine->nextValue(nextValueError); @@ -58,6 +65,8 @@ void PopulateWorker::run() emit finished(false); return; } + + emit finishedStep(i + 1); } if (!db->commit()) |
