summaryrefslogtreecommitdiff
path: root/project2/sqlCheck.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-02-19 21:16:44 +0000
committerrandomdan <randomdan@localhost>2011-02-19 21:16:44 +0000
commite8f67c36ac3acd801e3831246cb4dd68d14943d1 (patch)
tree31dc29cfcdbc55630c7af816450ca3e10e0b596a /project2/sqlCheck.h
parentTidy up the class hierarchy and reduce header dependencies (diff)
downloadproject2-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.h2
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;
};