aboutsummaryrefslogtreecommitdiff
path: root/pgsql/native
diff options
context:
space:
mode:
Diffstat (limited to 'pgsql/native')
-rw-r--r--pgsql/native/driver.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/pgsql/native/driver.cxx b/pgsql/native/driver.cxx
index 94bda60..3e4b680 100644
--- a/pgsql/native/driver.cxx
+++ b/pgsql/native/driver.cxx
@@ -10,18 +10,20 @@
#include <iostream>
#include <odb/pgsql/database.hxx>
+#include <odb/pgsql/transaction.hxx>
#include <common/common.hxx>
using namespace std;
-using namespace odb::core;
+namespace pgsql = odb::pgsql;
+using namespace pgsql;
int
main (int argc, char* argv[])
{
try
{
- auto_ptr<database> db (create_database (argc, argv));
+ auto_ptr<database> db (create_specific_database<database> (argc, argv));
// Create the database schema.
//