From: Andrea Zagli Date: Thu, 27 Dec 2012 16:17:40 +0000 (+0100) Subject: Added command line arg --only-schema (closes #524). X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=6bc1f8a68538affbe9296725084a510c0f8f95c5;p=gdadbcopy Added command line arg --only-schema (closes #524). --- diff --git a/src/main.c b/src/main.c index bfcc471..3052d20 100644 --- a/src/main.c +++ b/src/main.c @@ -28,6 +28,7 @@ static gchar *db_cnc = NULL; 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; @@ -46,6 +47,7 @@ static GOptionEntry entries[] = { "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 } @@ -1088,8 +1090,11 @@ main (int argc, char *argv[]) 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 ();