From c3e50de0d901bb096a5ce3b0e1ccdb7e09f0d500 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 1 Apr 2018 11:18:51 +0200 Subject: [PATCH] Collecting other field's properties. --- src/main.c | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/src/main.c b/src/main.c index 0ae446f..38c2fd3 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 Andrea Zagli + * Copyright (C) 2012-2018 Andrea Zagli * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -20,6 +20,8 @@ #include #endif +#include + #include static gchar *ref_db_cnc = NULL; @@ -37,6 +39,11 @@ typedef struct typedef struct { gchar *name; + gchar *data_type; + gchar *gtype_type; + gint size; + gboolean not_not_null; + gchar *default_value; } Field; static GOptionEntry entries[] = @@ -118,7 +125,12 @@ read_fields (GdaConnection *gdacon, Table *table) { field = g_new0 (Field, 1); field->name = gda_value_stringify (gda_data_model_get_value_at (dm_fields, 0, row, NULL)); - g_message ("\t\tField: %s", field->name); + field->data_type = gda_value_stringify (gda_data_model_get_value_at (dm_fields, 1, row, NULL)); + field->gtype_type = gda_value_stringify (gda_data_model_get_value_at (dm_fields, 2, row, NULL)); + field->size = g_value_get_int (gda_data_model_get_value_at (dm_fields, 3, row, NULL)); + field->not_not_null = g_value_get_boolean (gda_data_model_get_value_at (dm_fields, 5, row, NULL)); + field->default_value = gda_value_stringify (gda_data_model_get_value_at (dm_fields, 6, row, NULL)); + g_message ("\t\tField: %s (%s %s %d)", field->name, field->data_type, field->gtype_type, field->size); g_hash_table_insert (table->ht_fields, field->name, field); } @@ -233,8 +245,6 @@ main (int argc, char *argv[]) GHashTable *ht_ref_db_tables; GHashTable *ht_db_tables; - g_type_init (); - error = NULL; context = g_option_context_new ("- compare databases schema"); g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE); @@ -265,7 +275,7 @@ main (int argc, char *argv[]) { g_warning ("Could not open connection to reference database: %s.\n", error != NULL && error->message != NULL ? error->message : "no detail"); - return; + return 1; } error = NULL; @@ -276,7 +286,7 @@ main (int argc, char *argv[]) { g_warning ("Could not open connection to database: %s.\n", error != NULL && error->message != NULL ? error->message : "no detail"); - return; + return 1; } update_metastore (); -- 2.49.0