]> saetta.ns0.it Git - gdadbcopy/commitdiff
Added command line parameter "drop_tables".
authorAndrea Zagli <azagli@libero.it>
Sat, 24 Nov 2012 15:41:11 +0000 (16:41 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 24 Nov 2012 15:41:11 +0000 (16:41 +0100)
.anjuta_sym_db.db
src/main.c
tests/db.db

index f0289ebf34429fbdfaa5cfa23e80b9de18036d45..9e4533ac7b6cb986cc78ff1a4f81ff08826a8bfe 100644 (file)
Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ
index aea1712672e22adaaa22b0c381c620e7d9935248..9d22b78e638dfc184986bbb5bb528d35ef36dca1 100644 (file)
@@ -24,6 +24,7 @@
 
 static gchar *ref_db_cnc = NULL;
 static gchar *db_cnc = NULL;
+static gboolean drop_tables = FALSE;
 static gboolean verbose = FALSE;
 
 static GdaConnection *gda_conn_ref_db;
@@ -33,6 +34,7 @@ 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 },
        { "verbose", 0, 0, G_OPTION_ARG_NONE, &verbose, "Verbose", NULL },
        { NULL }
 };
@@ -334,6 +336,19 @@ read_tables ()
                                        g_printf ("\tTable: %s\n",
                                                  table->name);
 
+                                       if (drop_tables)
+                                               {
+                                                       gchar *sql;
+
+                                                       sql = g_strdup_printf ("DROP TABLE %s",
+                                                                              table->name);
+                                                       gda_connection_execute_non_select_command (gda_conn_db,
+                                                                                                  sql,
+                                                                                                  NULL);
+
+                                                       g_free (sql);
+                                               }
+
                                        /* sql builder for insert into */
                                        table->sqlbuilder = gda_sql_builder_new (GDA_SQL_STATEMENT_INSERT);
                                        gda_sql_builder_set_table (table->sqlbuilder, table->name);
index dc43486743d21deaecf2191ff3d504622f8fb506..e286b13d38fc56ab533e1e8b093a2b4e92e55167 100644 (file)
Binary files a/tests/db.db and b/tests/db.db differ