/*
- * 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
#include <config.h>
#endif
+#include <glib/gi18n-lib.h>
+
#include <libgda/libgda.h>
static gchar *ref_db_cnc = NULL;
typedef struct
{
gchar *name;
+ gchar *data_type;
+ gchar *gtype_type;
+ gint size;
+ gboolean not_not_null;
+ gchar *default_value;
} Field;
static GOptionEntry entries[] =
{
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);
}
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);
{
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;
{
g_warning ("Could not open connection to database: %s.\n",
error != NULL && error->message != NULL ? error->message : "no detail");
- return;
+ return 1;
}
update_metastore ();