summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/database/db_sql.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/modules/database/db_sql.cpp b/modules/database/db_sql.cpp
index 12fc8512f..873a8cc7a 100644
--- a/modules/database/db_sql.cpp
+++ b/modules/database/db_sql.cpp
@@ -123,14 +123,20 @@ class DBSQL : public Module, public Pipe
continue;
std::vector<Query> create = this->sql->CreateTable(this->prefix + s_type->GetName(), data);
- for (unsigned i = 0; i < create.size(); ++i)
- this->RunBackground(create[i]);
-
Query insert = this->sql->BuildInsert(this->prefix + s_type->GetName(), obj->id, data);
+
if (this->imported)
+ {
+ for (unsigned i = 0; i < create.size(); ++i)
+ this->RunBackground(create[i]);
+
this->RunBackground(insert, new ResultSQLSQLInterface(this, obj));
+ }
else
{
+ for (unsigned i = 0; i < create.size(); ++i)
+ this->sql->RunQuery(create[i]);
+
/* We are importing objects from another database module, so don't do asynchronous
* queries in case the core has to shut down, it will cut short the import
*/