diff options
author | randomdan <randomdan@localhost> | 2011-06-11 03:00:47 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-06-11 03:00:47 +0000 |
commit | a1269f80d17fd09705a61dee39451fea392e0f56 (patch) | |
tree | 2ceac3ab89da2a7dbb74b37f95ee135969cdb467 /project2/sql-modPQ.cpp | |
parent | Propagate features (diff) | |
download | project2-a1269f80d17fd09705a61dee39451fea392e0f56.tar.bz2 project2-a1269f80d17fd09705a61dee39451fea392e0f56.tar.xz project2-a1269f80d17fd09705a61dee39451fea392e0f56.zip |
Make named types code totally generic
Convert RDBMS DB types to new named types system and remove all the hacky mess previous used
Diffstat (limited to 'project2/sql-modPQ.cpp')
-rw-r--r-- | project2/sql-modPQ.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/project2/sql-modPQ.cpp b/project2/sql-modPQ.cpp new file mode 100644 index 0000000..499d8e7 --- /dev/null +++ b/project2/sql-modPQ.cpp @@ -0,0 +1,4 @@ +#include "rdbmsDataSource.h" +#include "../libpqpp/connection.h" +typedef PQ::Connection PQConnection; +DECLARE_COMPONENT_LOADER("postgresql", PQConnection, ConnectionLoader) |