diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-10-08 16:09:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-10-08 16:09:08 +0200 |
commit | 3d1969a43fce72dd50044c5eada38557f3f200bd (patch) | |
tree | 8515c6a535117d4f53bc8fe59feab8129563ebb4 /sqlite/database | |
parent | 6b76715e63d2c265a4c51c73f9019bc578f874cb (diff) |
Ground work for multi-database support
All generated code now includes database id. The database-specific
database class interface has been updated to include all the database
operations. The database-specific tests now use this interface.
Diffstat (limited to 'sqlite/database')
-rw-r--r-- | sqlite/database/driver.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sqlite/database/driver.cxx b/sqlite/database/driver.cxx index cb531c6..6e09d30 100644 --- a/sqlite/database/driver.cxx +++ b/sqlite/database/driver.cxx @@ -9,7 +9,8 @@ #include <odb/sqlite/database.hxx> -using namespace odb::sqlite; +namespace sqlite = odb::sqlite; +using namespace sqlite; int main (int argc, char* argv[]) |