static gboolean drop_tables = FALSE;
static gchar *output_file = NULL;
static gboolean only_schema = FALSE;
+static gboolean only_data = FALSE;
static gboolean explicit = FALSE;
static gboolean verbose = FALSE;
{ "table", 0, 0, G_OPTION_ARG_STRING_ARRAY, &tables_to_copy, "The table/view's name to copy (can be used multiple times)", "TABLE_NAME" },
{ "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" },
- { "only-schema", 0, 0, G_OPTION_ARG_NONE, &only_schema, "Read only the schema: it doesn't copy data", NULL },
+ { "only-schema", 0, 0, G_OPTION_ARG_NONE, &only_schema, "Read only the tables/views schema: it doesn't copy data", NULL },
+ { "only-data", 0, 0, G_OPTION_ARG_NONE, &only_data, "Read only the data: it doesn't create tables/views", NULL },
{ "explicit", 0, 0, G_OPTION_ARG_NONE, &explicit, "Read schema from sql statement, instead from GdaMetaStore (at least one --table must be provided)", NULL },
{ "verbose", 0, 0, G_OPTION_ARG_NONE, &verbose, "Verbose", NULL },
{ NULL }
}
}
-static gboolean
-field_server_operation (Table *table,
- GdaServerOperation *op,
- GdaMetaTableColumn *column,
- guint idx_column)
+static void
+field_create_sqlbuilder (Table *table, GdaMetaTableColumn *column)
{
- GError *error;
-
gchar *column_name;
/* sql builder */
column->gtype,
column->nullok));
g_free (column_name);
+}
+
+static gboolean
+field_server_operation (Table *table,
+ GdaServerOperation *op,
+ GdaMetaTableColumn *column,
+ guint idx_column)
+{
+ GError *error;
/* server operation */
error = NULL;
mt_column->default_value);
}
- field_server_operation (table, op, mt_column, col);
+ field_create_sqlbuilder (table, mt_column);
+
+ if (!only_data)
+ {
+ field_server_operation (table, op, mt_column, col);
+ }
}
}
column->default_value);
}
- field_server_operation (table, op, column, i);
+ field_create_sqlbuilder (table, column);
+
+ if (!only_data)
+ {
+ field_server_operation (table, op, column, i);
+ }
}
}
else
}
}
+static void
+table_create_sqlbuilder (Table *table)
+{
+ /* sql builder for insert into */
+ table->sqlbuilder = gda_sql_builder_new (GDA_SQL_STATEMENT_INSERT);
+ gda_sql_builder_set_table (table->sqlbuilder, table->name);
+}
+
static GdaServerOperation
*table_start_server_operation (Table *table)
{
GdaServerOperation *op;
- /* sql builder for insert into */
- table->sqlbuilder = gda_sql_builder_new (GDA_SQL_STATEMENT_INSERT);
- gda_sql_builder_set_table (table->sqlbuilder, table->name);
-
if (!provider_support_operation (gda_conn_db, GDA_SERVER_OPERATION_CREATE_TABLE))
{
g_warning ("Provider doesn't support GDA_SERVER_OPERATION_CREATE_TABLE.");
Table *table;
GdaServerOperation *op;
+ op = NULL;
+
g_printf ("* Reading tables on reference database declared on command line.\n");
parser = gda_connection_create_parser (gda_conn_ref_db);
g_printf ("\tTable: %s\n",
table->name);
- if (drop_tables)
+ if (!only_data && drop_tables)
{
drop_table (table);
}
- op = table_start_server_operation (table);
- if (op == NULL)
+ table_create_sqlbuilder (table);
+
+ if (!only_data)
{
- continue;
+ op = table_start_server_operation (table);
+ if (op == NULL)
+ {
+ continue;
+ }
}
}
if (cols > 0)
{
- if (output_file != NULL)
+ if (!only_data && output_file != NULL)
{
output_server_operation (op);
}
- table_exec_server_operation (op);
+ if (!only_data)
+ {
+ table_exec_server_operation (op);
+ }
if (verbose)
{
g_object_unref (stmt);
}
- g_object_unref (op);
+ if (op != NULL)
+ {
+ g_object_unref (op);
+ }
tables = g_slist_append (tables, table);
}
g_printf ("\tTable: %s\n",
table->name);
- if (drop_tables)
+ if (!only_data && drop_tables)
{
drop_table (table);
}
- op = table_start_server_operation (table);
- if (op == NULL)
+ table_create_sqlbuilder (table);
+
+ if (!only_data)
{
- continue;
+ op = table_start_server_operation (table);
+ if (op == NULL)
+ {
+ continue;
+ }
}
read_fields (table, op);
- if (output_file != NULL)
+ if (!only_data && output_file != NULL)
{
output_server_operation (op);
}
- table_exec_server_operation (op);
+ if (!only_data)
+ {
+ table_exec_server_operation (op);
+ }
if (verbose)
{
update_metastore ();
}
- g_printf ("* Reading tables of reference database (%s).\n",
- ref_db_cnc);
tables = NULL;
if (explicit)
{
}
else
{
+ g_printf ("* Reading tables of reference database (%s).\n",
+ ref_db_cnc);
read_tables ();
}
copy_data ();
}
- g_printf ("* Reading views.\n");
- read_views ();
+ if (!only_data)
+ {
+ g_printf ("* Reading views.\n");
+ read_views ();
+ }
if (output_file != NULL)
{