diff options
author | Kudlaty <none@none> | 2009-07-12 04:32:34 +0200 |
---|---|---|
committer | Kudlaty <none@none> | 2009-07-12 04:32:34 +0200 |
commit | 63fd4eda9923dd987b766e3a11291627e494d2e6 (patch) | |
tree | a156219cc1fc76c8da3e5509bdd2a7e6d83078a8 /src/shared | |
parent | bda2a721fa777bd1e1ab146036fb6144b09efadc (diff) |
Some work on PostgreSQL support
note: still don't work, so use mysql
--HG--
branch : trunk
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/Database/QueryResultPostgre.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shared/Database/QueryResultPostgre.h b/src/shared/Database/QueryResultPostgre.h index 30d69114dc6..a48c6d21fee 100644 --- a/src/shared/Database/QueryResultPostgre.h +++ b/src/shared/Database/QueryResultPostgre.h @@ -25,10 +25,12 @@ #define FD_SETSIZE 1024 #include <winsock2.h> #include <postgre/libpq-fe.h> +#include <postgre/postgres.h> #include <postgre/pg_type.h> #else #include <libpq-fe.h> -//#include <pg_type.h> +#include <postgres.h> +#include <catalog/pg_type.h> #endif class QueryResultPostgre : public QueryResult |