From 2cbb14fe706517f402402a9b75c2764d26bd692e Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Wed, 21 Nov 2012 22:17:24 +0100 Subject: [PATCH] Fields creation. --- src/main.c | 38 +++++++++++++++++++++----------------- tests/db.db | Bin 3072 -> 3072 bytes 2 files changed, 21 insertions(+), 17 deletions(-) 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 66bc769b6a3320a6265120f2fc0a5e3a7c7efa6e..aa2abdd6b9cfe1fa1397a7dab066c9cf65a94fa5 100644 GIT binary patch delta 73 zcmZpWXpop7Ey%;bz`zW}OhB4vqK+|8Q1_84FObK;!oa}vf$77>!X_prMuCZiU5u@p R1z9>+SQ&wmOhD!rW&odi4JiNs delta 99 zcmZpWXpop7Ey%&Zz`zW|Oi;`*QO6i4sQXBj7bwEO0+elFZrI$&{Det(JxBxv%$?{c d!`Lvf(23D@Vxa>oBT$kVsJ4w|^91HRW&paD5QqQ( -- 2.49.0