diff options
Diffstat (limited to 'schema/embedded')
-rw-r--r-- | schema/embedded/database.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/schema/embedded/database.hxx b/schema/embedded/database.hxx index e5c37fc..b2c81ea 100644 --- a/schema/embedded/database.hxx +++ b/schema/embedded/database.hxx @@ -35,19 +35,19 @@ create_database (int& argc, char* argv[]) if (argc > 1 && argv[1] == string ("--help")) { - cerr << "Usage: " << argv[0] << " [options]" << endl + cout << "Usage: " << argv[0] << " [options]" << endl << "Options:" << endl; #if defined(DATABASE_MYSQL) - odb::mysql::database::print_usage (cerr); + odb::mysql::database::print_usage (cout); #elif defined(DATABASE_SQLITE) - odb::sqlite::database::print_usage (cerr); + odb::sqlite::database::print_usage (cout); #elif defined(DATABASE_PGSQL) - odb::pgsql::database::print_usage (cerr); + odb::pgsql::database::print_usage (cout); #elif defined(DATABASE_ORACLE) - odb::oracle::database::print_usage (cerr); + odb::oracle::database::print_usage (cout); #elif defined(DATABASE_MSSQL) - odb::mssql::database::print_usage (cerr); + odb::mssql::database::print_usage (cout); #endif exit (0); |