From 6d7c18f1119de8941c7055910e55c13c411eeb92 Mon Sep 17 00:00:00 2001 From: randomdan Date: Wed, 9 Feb 2011 01:33:33 +0000 Subject: 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 --- libodbcpp/command.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libodbcpp/command.h') diff --git a/libodbcpp/command.h b/libodbcpp/command.h index 1bc9f6d..fdabe4a 100644 --- a/libodbcpp/command.h +++ b/libodbcpp/command.h @@ -1,13 +1,14 @@ #ifndef ODBC_COMMAND_H #define ODBC_COMMAND_H +#include "../libdbpp/command.h" #include #include "connection.h" #include namespace ODBC { class Param; - class Command { + class Command : public virtual DB::Command { typedef std::vector Params; public: Command(const Connection &, const std::string & sql); @@ -31,7 +32,6 @@ namespace ODBC { void bindNull(unsigned int i); - const std::string sql; protected: friend class Param; friend class Column; -- cgit v1.2.3