diff options
author | randomdan <randomdan@localhost> | 2011-02-09 01:33:33 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-02-09 01:33:33 +0000 |
commit | f0cbf8093fcec6504c0e612ea49e902b703e68f4 (patch) | |
tree | 423fc25eec8f35e9a2f0a37faf7a293454337059 /project2/sqlCheck.h | |
parent | Fix crash caused by taking reference of temp VariableType (diff) | |
download | project2-f0cbf8093fcec6504c0e612ea49e902b703e68f4.tar.bz2 project2-f0cbf8093fcec6504c0e612ea49e902b703e68f4.tar.xz project2-f0cbf8093fcec6504c0e612ea49e902b703e68f4.zip |
Fix the build system to do dependencies properly
Break down libodbcpp into a set of base classes; libdbpp
Add a native PostgreSQL implementation of libdbpp; libpqpp
Extend project2 rdbms stuff to work with generic connectors
Update datasources to specify connector type
Build libmisc as .so
Diffstat (limited to 'project2/sqlCheck.h')
-rw-r--r-- | project2/sqlCheck.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project2/sqlCheck.h b/project2/sqlCheck.h index bfc7b37..50132c1 100644 --- a/project2/sqlCheck.h +++ b/project2/sqlCheck.h @@ -4,7 +4,7 @@ #include "paramChecker.h" #include "iHaveParameters.h" -namespace ODBC { class SelectCommand; } +namespace DB { class SelectCommand; } class SqlCheck : public IHaveParameters, public ParamChecker { public: @@ -19,7 +19,7 @@ class SqlCheck : public IHaveParameters, public ParamChecker { const std::string testOp; const double testValue; private: - ODBC::SelectCommand * query; + DB::SelectCommand * query; }; #endif |