]> saetta.ns0.it Git - gdadbdiff/commitdiff
Collecting other field's properties.
authorAndrea Zagli <azagli@libero.it>
Sun, 1 Apr 2018 09:18:51 +0000 (11:18 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 1 Apr 2018 09:18:51 +0000 (11:18 +0200)
src/main.c

index 0ae446f49779f6d80c6d646dca4a7c4a1ffc6e80..38c2fd351e494caae0171e8e992f61a6a10adfd7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2012-2018 Andrea Zagli <azagli@libero.it>
  *
  *  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 <config.h>
 #endif
 
+#include <glib/gi18n-lib.h>
+
 #include <libgda/libgda.h>
 
 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 ();