]> saetta.ns0.it Git - gdadbcopy/commitdiff
Added command line arg --only-schema (closes #524).
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Thu, 27 Dec 2012 16:17:40 +0000 (17:17 +0100)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Thu, 27 Dec 2012 16:17:40 +0000 (17:17 +0100)
src/main.c

index bfcc4719b256fa7de42c1fccdfe20478f7a72a43..3052d20feed9aa4782f51397d29ca95dda68842c 100644 (file)
@@ -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 ();