From: Andrea Zagli Date: Sun, 25 Nov 2012 09:42:37 +0000 (+0100) Subject: Used GdaServerOperation to drop tables/views. X-Git-Tag: 0.0.1~1 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=2febff178831c3ad5121b82d330467b2b2ac409c;p=gdadbcopy Used GdaServerOperation to drop tables/views. --- diff --git a/.anjuta_sym_db.db b/.anjuta_sym_db.db index ae81199..63a1096 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 9a03c04..ea90fb3 100644 --- a/src/main.c +++ b/src/main.c @@ -424,15 +424,38 @@ read_tables () 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); + error = NULL; + op = gda_connection_create_operation (gda_conn_db, GDA_SERVER_OPERATION_DROP_TABLE, NULL, &error); + if (op == NULL + || error != NULL) + { + g_warning ("Error on creating GdaServerOperation: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + } + else + { + error = NULL; + if (!gda_server_operation_set_value_at (op, table->name, &error, + "/TABLE_DESC_P/TABLE_NAME")) + { + g_warning ("Error on setting GdaServerOperation's value: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + } + else + { + error = NULL; + if (!gda_connection_perform_operation (gda_conn_db, op, &error)) + { + g_warning ("Error on performing GdaServerOperation: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + } + } + } - g_free (sql); + if (op != NULL) + { + g_object_unref (op); + } } /* sql builder for insert into */ @@ -550,15 +573,38 @@ read_views () if (drop_tables) { - gchar *sql; - - sql = g_strdup_printf ("DROP VIEW %s", - view_name); - gda_connection_execute_non_select_command (gda_conn_db, - sql, - NULL); + error = NULL; + op = gda_connection_create_operation (gda_conn_db, GDA_SERVER_OPERATION_DROP_VIEW, NULL, &error); + if (op == NULL + || error != NULL) + { + g_warning ("Error on creating GdaServerOperation: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + } + else + { + error = NULL; + if (!gda_server_operation_set_value_at (op, view_name, &error, + "/VIEW_DESC_P/VIEW_NAME")) + { + g_warning ("Error on setting GdaServerOperation's value: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + } + else + { + error = NULL; + if (!gda_connection_perform_operation (gda_conn_db, op, &error)) + { + g_warning ("Error on performing GdaServerOperation: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + } + } + } - g_free (sql); + if (op != NULL) + { + g_object_unref (op); + } } error = NULL; diff --git a/tests/db.db b/tests/db.db index 86481fb..d6c7e71 100644 Binary files a/tests/db.db and b/tests/db.db differ