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;
{
{ "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 }
};
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);