AC_PROG_INSTALL
AC_PROG_MAKE_SET
+dnl ******************************
+dnl Translations
+dnl ******************************
+GETTEXT_PACKAGE=gdadbdiff
+AC_SUBST(GETTEXT_PACKAGE)
+AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
+ [The prefix for our gettext translation domains.])
+AM_GLIB_GNU_GETTEXT
+
# Checks for libraries.
PKG_CHECK_MODULES(GDADBDIFF, [libgda-4.0 >= 4.0.0])
AC_CONFIG_FILES([
Makefile
src/Makefile
+ tests/Makefile
])
AC_OUTPUT
#include <libgda/libgda.h>
+static gchar *ref_db_cnc = NULL;
+static gchar *db_cnc = NULL;
+
+GdaConnection *gda_conn_ref_db;
+GdaConnection *gda_conn_db;
+
+static GOptionEntry entries[] =
+{
+ { "ref-db-cnc", 0, 0, G_OPTION_ARG_STRING, &ref_db_cnc, "Reference database connection string", "CNC_STRING" },
+ { "db-cnc", 0, 0, G_OPTION_ARG_STRING, &db_cnc, "Database connection string", "CNC_STRING" },
+ { NULL }
+};
+
int
main (int argc, char *argv[])
{
+ GError *error;
+ GOptionContext *context;
+
+ g_type_init ();
+
+ error = NULL;
+ context = g_option_context_new ("- compare databases schema");
+ g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
+ if (!g_option_context_parse (context, &argc, &argv, &error))
+ {
+ g_error ("Option parsing failed: %s.", error->message);
+ return 1;
+ }
+
+ if (ref_db_cnc == NULL)
+ {
+ g_error ("You must enter on command line the reference database connection string.");
+ return 1;
+ }
+ if (db_cnc == NULL)
+ {
+ g_error ("You must enter on command line the database connection string.");
+ return 1;
+ }
+
+ error = NULL;
+ gda_conn_ref_db = gda_connection_open_from_string (NULL, ref_db_cnc, NULL,
+ GDA_CONNECTION_OPTIONS_NONE,
+ &error);
+ if (gda_conn_ref_db == NULL || error != NULL)
+ {
+ g_warning ("Could not open connection to reference database: %s.\n",
+ error != NULL && error->message != NULL ? error->message : "no detail");
+ return;
+ }
+
+ error = NULL;
+ gda_conn_db = gda_connection_open_from_string (NULL, db_cnc, NULL,
+ GDA_CONNECTION_OPTIONS_NONE,
+ &error);
+ if (gda_conn_db == NULL || error != NULL)
+ {
+ g_warning ("Could not open connection to database: %s.\n",
+ error != NULL && error->message != NULL ? error->message : "no detail");
+ return;
+ }
+ g_object_unref (gda_conn_ref_db);
+ g_object_unref (gda_conn_db);
return 0;
}