From: Andrea Zagli Date: Sat, 24 Nov 2012 15:41:11 +0000 (+0100) Subject: Added command line parameter "drop_tables". X-Git-Tag: 0.0.1~8 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=cd02c0a761ced60ea284dafae45aa54c9733c79f;p=gdadbcopy Added command line parameter "drop_tables". --- diff --git a/.anjuta_sym_db.db b/.anjuta_sym_db.db index f0289eb..9e4533a 100644 Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ diff --git a/src/main.c b/src/main.c index aea1712..9d22b78 100644 --- a/src/main.c +++ b/src/main.c @@ -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); diff --git a/tests/db.db b/tests/db.db index dc43486..e286b13 100644 Binary files a/tests/db.db and b/tests/db.db differ