static gchar *ref_db_cnc = NULL;
static gchar *db_cnc = NULL;
static gboolean drop_tables = FALSE;
+static gchar *output_file = NULL;
static gboolean verbose = FALSE;
static GdaConnection *gda_conn_ref_db;
static GdaConnection *gda_conn_db;
+static xmlDoc *xdoc;
+static xmlNode *xroot;
+
static GOptionEntry entries[] =
{
{ "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" },
{ "drop-tables", 0, 0, G_OPTION_ARG_NONE, &drop_tables, "Drop tables before creating new ones", NULL },
+ { "output-file", 0, 0, G_OPTION_ARG_FILENAME, &output_file, "Ouput the whole operation in an xmlfile", "FILENAME" },
{ "verbose", 0, 0, G_OPTION_ARG_NONE, &verbose, "Verbose", NULL },
{ NULL }
};
(error != NULL && error->message != NULL ? error->message : "no details."));
continue;
}
+
+ if (output_file != NULL)
+ {
+ xmlNode *xnode;
+
+ xnode = xmlNewNode (NULL, "insert_into");
+ error = NULL;
+ sql = gda_statement_to_sql_extended (stmt,
+ gda_conn_db,
+ params,
+ GDA_STATEMENT_SQL_PARAMS_AS_VALUES,
+ NULL,
+ &error);
+
+ xmlNodeSetContent (xnode, sql);
+ xmlAddChild (xroot, xnode);
+ g_free (sql);
+ }
}
g_printf ("\n");
read_fields (table, op);
+ if (output_file != NULL)
+ {
+ error = NULL;
+ xmlAddChild (xroot,
+ gda_server_operation_save_data_to_xml (op,
+ &error));
+ if (error != NULL)
+ {
+ g_warning ("Error on saving GdaServerOperation to xml: %s.",
+ error->message != NULL ? error->message : "no details");
+ continue;
+ }
+ }
+
error = NULL;
if (!gda_connection_perform_operation (gda_conn_db, op, &error))
{
continue;
}
+ if (output_file != NULL)
+ {
+ error = NULL;
+ xmlAddChild (xroot,
+ gda_server_operation_save_data_to_xml (op,
+ &error));
+ if (error != NULL)
+ {
+ g_warning ("Error on saving GdaServerOperation to xml: %s.",
+ error->message != NULL ? error->message : "no details");
+ continue;
+ }
+ }
+
g_free (view_def);
g_free (view_name);
return;
}
+ if (output_file != NULL)
+ {
+ /* initialize output file */
+ xroot = xmlNewNode (NULL, "gdadbcopy");
+ }
+
update_metastore ();
g_printf ("* Reading tables of reference database (%s).\n",
g_printf ("* Reading views.\n");
read_views ();
+ if (output_file != NULL)
+ {
+ /* initialize output file */
+ xdoc = xmlNewDoc ("1.0");
+ xmlDocSetRootElement (xdoc, xroot);
+ xmlSaveFormatFile (output_file, xdoc, 2);
+ xmlFreeDoc (xdoc);
+ }
+
g_object_unref (gda_conn_ref_db);
g_object_unref (gda_conn_db);