From: Andrea Zagli Date: Sat, 24 Nov 2012 17:25:45 +0000 (+0100) Subject: Read if a field is a primary key, if it is nullable and its default value. X-Git-Tag: 0.0.1~6 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=ff261d260eb75b17773fc50489c1c96c6bc87950;p=gdadbcopy Read if a field is a primary key, if it is nullable and its default value. --- diff --git a/.anjuta_sym_db.db b/.anjuta_sym_db.db index e8988f4..a527b47 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 829ce56..cc612f5 100644 --- a/src/main.c +++ b/src/main.c @@ -154,8 +154,7 @@ copy_data () error = NULL; if (!gda_holder_set_value (holder, gval, &error)) { - g_warning ("Unable to set the holder for parameter «%s»: %s.", - param_name, + g_warning ("Unable to set the holder for parameter: %s.", error != NULL && error->message != NULL ? error->message : "no details"); } g_free (param_name); @@ -252,7 +251,14 @@ read_fields (Table *table, GdaServerOperation *op) column->gtype = mt_column->gtype; column->pkey = mt_column->pkey; column->nullok = mt_column->nullok; - column->default_value = g_strdup (mt_column->default_value); + if (mt_column->default_value != NULL) + { + column->default_value = g_strdup (mt_column->default_value); + } + else + { + column->default_value = NULL; + } table->fields = g_slist_append (table->fields, column); if (verbose) @@ -281,7 +287,7 @@ read_fields (Table *table, GdaServerOperation *op) if (!gda_server_operation_set_value_at (op, column->column_name, &error, - g_strdup_printf ("/FIELDS_A/@COLUMN_NAME/%d", i))) + "/FIELDS_A/@COLUMN_NAME/%d", i)) { g_warning ("Error on setting GdaServerOperation's value: %s.", error != NULL && error->message != NULL ? error->message : "no details"); @@ -292,12 +298,54 @@ read_fields (Table *table, GdaServerOperation *op) if (!gda_server_operation_set_value_at (op, column->column_type, &error, - g_strdup_printf ("/FIELDS_A/@COLUMN_TYPE/%d", i))) + "/FIELDS_A/@COLUMN_TYPE/%d", i)) { g_warning ("Error on setting GdaServerOperation's value: %s.", error != NULL && error->message != NULL ? error->message : "no details"); continue; } + + if (column->pkey) + { + error = NULL; + if (!gda_server_operation_set_value_at (op, + "TRUE", + &error, + "/FIELDS_A/@COLUMN_PKEY/%d", i)) + { + g_warning ("Error on setting GdaServerOperation's value: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + continue; + } + } + + if (!column->nullok) + { + error = NULL; + if (!gda_server_operation_set_value_at (op, + "TRUE", + &error, + "/FIELDS_A/@COLUMN_NNUL/%d", i)) + { + g_warning ("Error on setting GdaServerOperation's value: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + continue; + } + } + + if (column->default_value != NULL) + { + error = NULL; + if (!gda_server_operation_set_value_at (op, + column->default_value, + &error, + "/FIELDS_A/@COLUMN_DEFAULT/%d", i)) + { + g_warning ("Error on setting GdaServerOperation's value: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + continue; + } + } } } g_object_unref (mstruct); diff --git a/tests/db.db b/tests/db.db index e5ace60..77295cc 100644 Binary files a/tests/db.db and b/tests/db.db differ diff --git a/tests/refdb.db b/tests/refdb.db index 932e681..7b3d334 100644 Binary files a/tests/refdb.db and b/tests/refdb.db differ