diff options
author | randomdan <randomdan@localhost> | 2011-02-19 21:16:44 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-02-19 21:16:44 +0000 |
commit | e8f67c36ac3acd801e3831246cb4dd68d14943d1 (patch) | |
tree | 31dc29cfcdbc55630c7af816450ca3e10e0b596a /project2/sqlCheck.h | |
parent | Tidy up the class hierarchy and reduce header dependencies (diff) | |
download | project2-e8f67c36ac3acd801e3831246cb4dd68d14943d1.tar.bz2 project2-e8f67c36ac3acd801e3831246cb4dd68d14943d1.tar.xz project2-e8f67c36ac3acd801e3831246cb4dd68d14943d1.zip |
Add conversions for floats, ints and datetimes for variables
> Use them to fully implement the rest of sqlCheck
Diffstat (limited to 'project2/sqlCheck.h')
-rw-r--r-- | project2/sqlCheck.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/sqlCheck.h b/project2/sqlCheck.h index 50132c1..8557dce 100644 --- a/project2/sqlCheck.h +++ b/project2/sqlCheck.h @@ -17,7 +17,7 @@ class SqlCheck : public IHaveParameters, public ParamChecker { const Variable dataSource; const Glib::ustring sql; const std::string testOp; - const double testValue; + const VariableType testValue; private: DB::SelectCommand * query; }; |