From 3fe60bdf39fc5486acfad9a630010cb4011b6588 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 24 Nov 2012 16:25:05 +0100 Subject: [PATCH] Changed g_message with g_printf. --- .anjuta_sym_db.db | Bin 34816 -> 34816 bytes src/main.c | 33 ++++++++++++++++++--------------- tests/db.db | Bin 3072 -> 3072 bytes 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/.anjuta_sym_db.db b/.anjuta_sym_db.db index effcc23daef2206d986361fc12ba827379bbbb4f..3dcb3620e2badbbc7bb0872b9f23ea09217b661b 100644 GIT binary patch delta 81 zcmZpez|=5-X@WH4jEOSNj59VS%$8;~GPW``+9bm$%D7=Nli^Rs>dAi$JsFiZyBY0a k0SYmjdx=)_3$rS7GBFmVCZ@!fBqrsg76TO|na>LV01?j_E&u=k delta 81 zcmZpez|=5-X@WFk#Y7or#)^#zv!z)L&8-ZKH_0%HGOnM@WcZV@a`GQTPe!H9Zbo}p jfI`gXUZR!!!mP@iOpHaTi7D|ViAg!B#Xto~=JNso{~Q?Q 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 e3b54eb3c180e34cd25608bfe46e4367fcd3c44c..5cf743a2cc89ab49c774311967e6e3a9f5b91529 100644 GIT binary patch delta 33 icmZpWXpop7EqH^0fq@x_nV|U8L>*(s8ygcAa038pp$8iP delta 33 icmZpWXpop7EqH)|fq@x_nV@*rL>*(s0~-?-a038m83x+` -- 2.49.0