]> saetta.ns0.it Git - gdadbdiff/commitdiff
Reading tables of reference and compared databases.
authorAndrea Zagli <azagli@libero.it>
Sun, 16 Sep 2012 08:41:19 +0000 (10:41 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 16 Sep 2012 08:41:19 +0000 (10:41 +0200)
.anjuta_sym_db.db
src/main.c
tests/refdb.db

index 583328c4d8a71eefbb76f043a9aa9ea6b1d49f2b..47502246193c39b910552aac7b492894091fdb2f 100644 (file)
Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ
index 547d05353e82f5d00e09245b2b881add72f3053c..621cd1d591fa15d913cb405762689a493f41c8ae 100644 (file)
@@ -35,6 +35,58 @@ static GOptionEntry entries[] =
        { NULL }
 };
 
+static void
+update_metastore ()
+{
+       GError *error;
+
+       GdaMetaContext mcontext = {"_tables", 0, NULL, NULL};
+
+       g_message ("Updating metastores.");
+
+       error = NULL;
+       if (!gda_connection_update_meta_store (gda_conn_ref_db, &mcontext, &error))
+               {
+                       g_warning ("Unable to update reference database metastore: %s",
+                                  (error != NULL && error->message != NULL ? error->message : "no details."));
+               }
+
+       error = NULL;
+       if (!gda_connection_update_meta_store (gda_conn_db, &mcontext, &error))
+               {
+                       g_warning ("Unable to update database metastore: %s",
+                                  (error != NULL && error->message != NULL ? error->message : "no details."));
+               }
+}
+
+static void
+read_tables (GdaConnection *gdacon)
+{
+       GError *error;
+
+       GdaDataModel *dm_tables;
+
+       guint rows;
+       guint row;
+
+       gchar *table_name;
+
+       error = NULL;
+       dm_tables = gda_connection_get_meta_store_data (gdacon,
+                                                       GDA_CONNECTION_META_TABLES,
+                                                       &error,
+                                                       0);
+       if (dm_tables != NULL && error == NULL)
+               {
+                       rows = gda_data_model_get_n_rows (dm_tables);
+                       for (row = 0; row < rows; row++)
+                               {
+                                       table_name = gda_value_stringify (gda_data_model_get_value_at (dm_tables, 0, row, NULL));
+                                       g_message ("Table: %s", table_name);
+                               }
+               }
+}
+
 int
 main (int argc, char *argv[])
 {
@@ -63,6 +115,8 @@ main (int argc, char *argv[])
                        return 1;
                }
 
+       g_message ("Connecting to databases.");
+
        error = NULL;
        gda_conn_ref_db = gda_connection_open_from_string (NULL, ref_db_cnc, NULL,
                                               GDA_CONNECTION_OPTIONS_NONE,
@@ -85,6 +139,14 @@ main (int argc, char *argv[])
                        return;
                }
 
+       update_metastore ();
+
+       g_message ("Reading tables of reference database.");
+       read_tables (gda_conn_ref_db);
+
+       g_message ("Reading tables of database.");
+       read_tables (gda_conn_db);
+
        g_object_unref (gda_conn_ref_db);
        g_object_unref (gda_conn_db);
 
index 9831ee9ed9ac7c1e57b3a448a1750eb81d7c9e3d..81a6e21fec7986cb58e9e4f99691f8c2ac396241 100644 (file)
Binary files a/tests/refdb.db and b/tests/refdb.db differ