From: Andrea Zagli Date: Wed, 21 Nov 2012 21:17:24 +0000 (+0100) Subject: Fields creation. X-Git-Tag: 0.0.1~16 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=2cbb14fe706517f402402a9b75c2764d26bd692e;p=gdadbcopy Fields creation. --- diff --git a/src/main.c b/src/main.c index bc3b356..001de4a 100644 --- a/src/main.c +++ b/src/main.c @@ -60,7 +60,7 @@ update_metastore () } static void -read_fields (const gchar *table_name) +read_fields (const gchar *table_name, GdaServerOperation *op) { GError *error; @@ -108,6 +108,25 @@ read_fields (const gchar *table_name) gda_value_stringify (gda_data_model_get_value_at (dm_fields, 2, row, NULL)), g_value_get_int (gda_data_model_get_value_at (dm_fields, 3, row, NULL)), g_value_get_int (gda_data_model_get_value_at (dm_fields, 4, row, NULL))); + + if (!gda_server_operation_set_value_at (op, + gda_value_stringify (gda_data_model_get_value_at (dm_fields, 0, row, NULL)), + &error, + g_strdup_printf ("/FIELDS_A/@COLUMN_NAME/%d", row))) + { + g_warning ("Error on setting GdaServerOperation's value: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + continue; + } + if (!gda_server_operation_set_value_at (op, + gda_value_stringify (gda_data_model_get_value_at (dm_fields, 1, row, NULL)), + &error, + g_strdup_printf ("/FIELDS_A/@COLUMN_TYPE/%d", row))) + { + g_warning ("Error on setting GdaServerOperation's value: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + continue; + } } } if (dm_fields != NULL) @@ -163,22 +182,7 @@ read_tables () continue; } - /*read_fields (gdacon, table_name);*/ - if (!gda_server_operation_set_value_at (op, "id", &error, - "/FIELDS_A/@COLUMN_NAME/0")) - { - g_warning ("Error on setting GdaServerOperation's value: %s.", - error != NULL && error->message != NULL ? error->message : "no details"); - continue; - } - if (!gda_server_operation_set_value_at (op, "INTEGER", &error, - "/FIELDS_A/@COLUMN_TYPE/0")) - { - g_warning ("Error on setting GdaServerOperation's value: %s.", - error != NULL && error->message != NULL ? error->message : "no details"); - continue; - } - + read_fields (table_name, op); error = NULL; if (!gda_connection_perform_operation (gda_conn_db, op, &error)) diff --git a/tests/db.db b/tests/db.db index 66bc769..aa2abdd 100644 Binary files a/tests/db.db and b/tests/db.db differ