diff options
Diffstat (limited to 'project2/sql/sqlTest.cpp')
-rw-r--r-- | project2/sql/sqlTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/project2/sql/sqlTest.cpp b/project2/sql/sqlTest.cpp index 3cf25b7..f45b2c9 100644 --- a/project2/sql/sqlTest.cpp +++ b/project2/sql/sqlTest.cpp @@ -20,7 +20,8 @@ SqlTest::SqlTest(ScriptNodePtr p) : filter(p, "filter", ""), testOp(p, "testOp", "=="), testValue(p, "testValue"), - sqlCommand(p->child("sql")) + sqlCommand(p->child("sql")), + db(NULL) { } |