From: Andrea Zagli Date: Sat, 24 Nov 2012 15:18:10 +0000 (+0100) Subject: Added command line parameter "verbose". X-Git-Tag: 0.0.1~11 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=532a99eec2b4f646b6f1922eaca8e9b21c7e043a;p=gdadbcopy Added command line parameter "verbose". --- diff --git a/.anjuta_sym_db.db b/.anjuta_sym_db.db index af0bfb0..effcc23 100644 Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ diff --git a/src/main.c b/src/main.c index 004fe94..95ad72f 100644 --- a/src/main.c +++ b/src/main.c @@ -24,6 +24,7 @@ static gchar *ref_db_cnc = NULL; static gchar *db_cnc = NULL; +static gboolean verbose = FALSE; static GdaConnection *gda_conn_ref_db; static GdaConnection *gda_conn_db; @@ -32,6 +33,7 @@ static GOptionEntry entries[] = { { "ref-db-cnc", 0, 0, G_OPTION_ARG_STRING, &ref_db_cnc, "Reference database connection string", "CNC_STRING" }, { "db-cnc", 0, 0, G_OPTION_ARG_STRING, &db_cnc, "Database connection string", "CNC_STRING" }, + { "verbose", 0, 0, G_OPTION_ARG_NONE, &verbose, "Verbose", NULL }, { NULL } }; @@ -236,13 +238,16 @@ read_fields (Table *table, GdaServerOperation *op) column->default_value = g_strdup (mt_column->default_value); table->fields = g_slist_append (table->fields, column); - g_message ("\t\tField: %s - %s - %d - %d - %d - %s", - column->column_name, - column->column_type, - column->gtype, - column->pkey, - column->nullok, - column->default_value); + if (verbose) + { + g_message ("\t\tField: %s - %s - %d - %d - %d - %s", + column->column_name, + column->column_type, + column->gtype, + column->pkey, + column->nullok, + column->default_value); + } /* sql builder */ column_name = g_strdup_printf ("p_%s", column->column_name); @@ -347,12 +352,15 @@ read_tables () continue; } - error = NULL; - stmt = gda_sql_builder_get_statement (table->sqlbuilder, &error); - error = NULL; - g_message ("\t\tSql: %s", - gda_statement_to_sql (stmt, NULL, &error)); - g_object_unref (stmt); + if (verbose) + { + error = NULL; + stmt = gda_sql_builder_get_statement (table->sqlbuilder, &error); + error = NULL; + g_message ("\t\tSql: %s", + gda_statement_to_sql (stmt, NULL, &error)); + g_object_unref (stmt); + } g_object_unref (op); diff --git a/tests/db.db b/tests/db.db index 2c0d58c..e3b54eb 100644 Binary files a/tests/db.db and b/tests/db.db differ