diff options
Diffstat (limited to 'sqlite/native/driver.cxx')
-rw-r--r-- | sqlite/native/driver.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sqlite/native/driver.cxx b/sqlite/native/driver.cxx index 30f0197..91b04e6 100644 --- a/sqlite/native/driver.cxx +++ b/sqlite/native/driver.cxx @@ -15,14 +15,16 @@ #include <common/common.hxx> using namespace std; -using namespace odb::core; +namespace sqlite = odb::sqlite; +using namespace sqlite; int main (int argc, char* argv[]) { try { - auto_ptr<database> db (create_database (argc, argv, false)); + auto_ptr<database> db ( + create_specific_database<database> (argc, argv, false)); // Create the database schema. // |