From 3d1969a43fce72dd50044c5eada38557f3f200bd Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 8 Oct 2012 16:09:08 +0200 Subject: 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. --- mysql/database/driver.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mysql/database/driver.cxx') diff --git a/mysql/database/driver.cxx b/mysql/database/driver.cxx index e9b625d..f385b3f 100644 --- a/mysql/database/driver.cxx +++ b/mysql/database/driver.cxx @@ -10,7 +10,8 @@ #include using std::string; -using namespace odb::mysql; +namespace mysql = odb::mysql; +using namespace mysql; int main (int argc, char* argv[]) -- cgit v1.1