diff options
Diffstat (limited to 'pgsql/truncation/driver.cxx')
-rw-r--r-- | pgsql/truncation/driver.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/pgsql/truncation/driver.cxx b/pgsql/truncation/driver.cxx index eefbdcd..fe72780 100644 --- a/pgsql/truncation/driver.cxx +++ b/pgsql/truncation/driver.cxx @@ -18,7 +18,8 @@ #include "test-odb.hxx" using namespace std; -using namespace odb::core; +namespace pgsql = odb::pgsql; +using namespace pgsql; int main (int argc, char* argv[]) @@ -33,7 +34,7 @@ main (int argc, char* argv[]) // Test basic operations. // { - auto_ptr<database> db (create_database (argc, argv)); + auto_ptr<database> db (create_specific_database<database> (argc, argv)); // Run persist/load so that the initial bindings are established // (version == 0). @@ -98,10 +99,10 @@ main (int argc, char* argv[]) // Test query. // { - typedef odb::query<object1> query; + typedef pgsql::query<object1> query; typedef odb::result<object1> result; - auto_ptr<database> db (create_database (argc, argv)); + auto_ptr<database> db (create_specific_database<database> (argc, argv)); // Run persist/query so that the initial bindings are established // (version == 0). |