From: Andrea Zagli Date: Sat, 24 Nov 2012 15:25:05 +0000 (+0100) Subject: Changed g_message with g_printf. X-Git-Tag: 0.0.1~10 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=3fe60bdf39fc5486acfad9a630010cb4011b6588;p=gdadbcopy Changed g_message with g_printf. --- diff --git a/.anjuta_sym_db.db b/.anjuta_sym_db.db index effcc23..3dcb362 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 95ad72f..22284eb 100644 --- a/src/main.c +++ b/src/main.c @@ -55,7 +55,7 @@ update_metastore () GdaMetaContext mcontext = {"_tables", 0, NULL, NULL}; - g_message ("Updating metastores."); + g_printf ("* Updating metastores.\n"); error = NULL; if (!gda_connection_update_meta_store (gda_conn_ref_db, &mcontext, &error)) @@ -105,7 +105,8 @@ copy_data () g_free (sql); if (dm != NULL) { - g_message ("\tTable: %s", table->name); + g_printf ("\tTable: %s\n", + table->name); iter = gda_data_model_create_iter (dm); if (iter == NULL) @@ -240,13 +241,13 @@ read_fields (Table *table, GdaServerOperation *op) 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); + g_printf ("\t\tField: %s - %s - %d - %d - %d - %s\n", + column->column_name, + column->column_type, + column->gtype, + column->pkey, + column->nullok, + column->default_value); } /* sql builder */ @@ -316,7 +317,8 @@ read_tables () table->sqlbuilder = NULL; table->fields = NULL; - g_message ("\tTable: %s", table->name); + g_printf ("\tTable: %s\n", + table->name); /* sql builder for insert into */ table->sqlbuilder = gda_sql_builder_new (GDA_SQL_STATEMENT_INSERT); @@ -357,8 +359,8 @@ read_tables () 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_printf ("\t\tSql: %s\n", + gda_statement_to_sql (stmt, NULL, &error)); g_object_unref (stmt); } @@ -401,7 +403,7 @@ main (int argc, char *argv[]) return 1; } - g_message ("Connecting to databases."); + g_printf ("* Connecting to databases.\n"); error = NULL; gda_conn_ref_db = gda_connection_open_from_string (NULL, ref_db_cnc, NULL, @@ -427,11 +429,12 @@ main (int argc, char *argv[]) update_metastore (); - g_message ("Reading tables of reference database (%s).", ref_db_cnc); + g_printf ("* Reading tables of reference database (%s).\n", + ref_db_cnc); tables = NULL; read_tables (); - g_message ("Copying data."); + g_printf ("* Copying data.\n"); copy_data (); g_object_unref (gda_conn_ref_db); diff --git a/tests/db.db b/tests/db.db index e3b54eb..5cf743a 100644 Binary files a/tests/db.db and b/tests/db.db differ