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))
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)
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 */
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);
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);
}
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,
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);