static gchar **tables_to_copy = NULL;
static gboolean drop_tables = FALSE;
static gchar *output_file = NULL;
+static gboolean only_schema = 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 },
{ "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 }
read_tables ();
}
- g_printf ("* Copying data.\n");
- copy_data ();
+ if (!only_schema)
+ {
+ g_printf ("* Copying data.\n");
+ copy_data ();
+ }
g_printf ("* Reading views.\n");
read_views ();