]> saetta.ns0.it Git - gdadbcopy/commitdiff
Changed g_message with g_printf.
authorAndrea Zagli <azagli@libero.it>
Sat, 24 Nov 2012 15:25:05 +0000 (16:25 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 24 Nov 2012 15:25:05 +0000 (16:25 +0100)
.anjuta_sym_db.db
src/main.c
tests/db.db

index effcc23daef2206d986361fc12ba827379bbbb4f..3dcb3620e2badbbc7bb0872b9f23ea09217b661b 100644 (file)
Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ
index 95ad72ff0617d75656764caa57a4f90d77cbe694..22284ebf4823a5e4e44d8115b1da1c485cfd24ac 100644 (file)
@@ -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);
index e3b54eb3c180e34cd25608bfe46e4367fcd3c44c..5cf743a2cc89ab49c774311967e6e3a9f5b91529 100644 (file)
Binary files a/tests/db.db and b/tests/db.db differ