From e440e73a889c8929730632d62ebc84e32475b549 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Wed, 13 Jul 2011 11:03:13 +0200 Subject: Add PostgreSQL --- inheritance/database.hxx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'inheritance') diff --git a/inheritance/database.hxx b/inheritance/database.hxx index 6d1fa66..fe815e9 100644 --- a/inheritance/database.hxx +++ b/inheritance/database.hxx @@ -1,4 +1,4 @@ -// file : inheritance/database.hxx +// file : template/database.hxx // author : Boris Kolpackov // copyright : not copyrighted - public domain @@ -22,6 +22,8 @@ # include # include # include +#elif defined(DATABASE_PGSQL) +# include #endif inline std::auto_ptr @@ -39,6 +41,8 @@ create_database (int& argc, char* argv[]) odb::mysql::database::print_usage (cerr); #elif defined(DATABASE_SQLITE) odb::sqlite::database::print_usage (cerr); +#elif defined(DATABASE_PGSQL) + odb::pgsql::database::print_usage (cerr); #endif exit (0); @@ -58,6 +62,8 @@ create_database (int& argc, char* argv[]) schema_catalog::create_schema (*db); t.commit (); } +#elif defined(DATABASE_PGSQL) + auto_ptr db (new odb::pgsql::database (argc, argv)); #endif return db; -- cgit v1.1