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;
{
{ "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 }
};
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);
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);