]> saetta.ns0.it Git - gdadbcopy/commitdiff
Added command line parameter "verbose".
authorAndrea Zagli <azagli@libero.it>
Sat, 24 Nov 2012 15:18:10 +0000 (16:18 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 24 Nov 2012 15:18:10 +0000 (16:18 +0100)
.anjuta_sym_db.db
src/main.c
tests/db.db

index af0bfb0557b546719180d958543658a4307f8e2d..effcc23daef2206d986361fc12ba827379bbbb4f 100644 (file)
Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ
index 004fe942fe02490ed5a0cb88e151f317c523f3d9..95ad72ff0617d75656764caa57a4f90d77cbe694 100644 (file)
@@ -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);
 
index 2c0d58c323e98ad11a79021502c21e74677b5961..e3b54eb3c180e34cd25608bfe46e4367fcd3c44c 100644 (file)
Binary files a/tests/db.db and b/tests/db.db differ