diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-28 11:21:46 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-28 11:21:46 +0200 |
commit | b6f2b4e1e924965d55e656992a48cc3cd19e64a2 (patch) | |
tree | 79889e297996eaf92a57da8380c54f1fcfc7fa7d /mysql/native | |
parent | 6dd8138b765b8533958bc23d39e95a17377d4f75 (diff) |
Add schema creation flag to create_database()
Diffstat (limited to 'mysql/native')
-rw-r--r-- | mysql/native/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql/native/driver.cxx b/mysql/native/driver.cxx index 8854566..437a160 100644 --- a/mysql/native/driver.cxx +++ b/mysql/native/driver.cxx @@ -23,7 +23,7 @@ main (int argc, char* argv[]) { try { - auto_ptr<database> db (create_database (argc, argv)); + auto_ptr<database> db (create_database (argc, argv, false)); // Create the database schema. // |