]> saetta.ns0.it Git - libgdaex/commitdiff
Use of gdaex_init instead of gdaex_new_.
authorAndrea Zagli <a.zagli@libero.it>
Sun, 22 Dec 2019 08:45:23 +0000 (09:45 +0100)
committerAndrea Zagli <a.zagli@libero.it>
Sun, 22 Dec 2019 08:45:23 +0000 (09:45 +0100)
src/gdaex.c
tests/select.c

index 34636594e49a619dff9aef3ec1b5224204817a59..7e729a8144cb2a4789ac8de9759d19b9cc4e5ee0 100644 (file)
@@ -130,21 +130,15 @@ gdaex_class_init (GdaExClass *klass)
 static void
 gdaex_init (GdaEx *gdaex)
 {
+       gchar *localedir;
+
        GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex);
 
+       g_message ("Init");
+
        priv->tables_name_prefix = NULL;
        priv->debug = 0;
-       priv->log_file = 0;
-}
-
-static GdaEx
-*gdaex_new_ ()
-{
-       gchar *localedir;
-
-       GdaEx *gdaex = GDAEX (g_object_new (gdaex_get_type (), NULL));
-
-       GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex);
+       priv->log_file = NULL;
 
        setlocale (LC_ALL, "");
        gda_locale_changed ();
@@ -189,8 +183,6 @@ static GdaEx
        gtk_builder_set_translation_domain (priv->gtkbuilder, GETTEXT_PACKAGE);
 
        g_free (localedir);
-
-       return gdaex;
 }
 
 /**
@@ -222,7 +214,7 @@ GdaEx
                        return NULL;
                }
 
-       gdaex = gdaex_new_ ();
+       gdaex = GDAEX (g_object_new (gdaex_get_type (), NULL));
        if (gdaex == NULL)
                {
                        /* TO DO */
@@ -315,7 +307,7 @@ GdaEx
                        return NULL;
                }
 
-       gdaex = gdaex_new_ ();
+       gdaex = GDAEX (g_object_new (gdaex_get_type (), NULL));
        if (gdaex == NULL)
                {
                        /* TO DO */
@@ -360,7 +352,7 @@ GdaEx
 
        g_return_val_if_fail (GDA_IS_CONNECTION (conn), NULL);
 
-       gdaex = gdaex_new_ ();
+       gdaex = GDAEX (g_object_new (gdaex_get_type (), NULL));
 
        priv = GDAEX_GET_PRIVATE (gdaex);
 
index b48f3fbcadc50727ac58a0350763c21357ed4b9d..93300523c6a3af3c266fa6b8160996a56a8be45f 100644 (file)
@@ -16,6 +16,8 @@
  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  */
 
+#include <glib/gprintf.h>
+
 #include <libgdaex.h>
 
 int
@@ -28,15 +30,20 @@ main (int argc, char **argv)
 
        gtk_init (&argc, &argv);
 
-       gdaex = gdaex_new_from_string (g_strdup_printf ("SQLite://DB_DIR=%s;DB_NAME=grid.db", TESTSDIR));
+       //gdaex = gdaex_new_from_string (g_strdup_printf ("SQLite://DB_DIR=%s;DB_NAME=grid.db", TESTSDIR));
+       gdaex = g_object_new (TYPE_GDAEX, NULL);
        if (gdaex == NULL)
                {
                        g_error ("Unable to connect to the db.");
                }
 
-       sql = g_strdup_printf ("SELECT * FROM clientssss");
+       sql = g_strdup_printf ("SELECT * FROM clients");
        dm = gdaex_query (gdaex, sql);
        g_free (sql);
+
+       sql = gda_data_model_dump_as_string (dm);
+       g_printf ("%s\n", sql);
+
        g_object_unref (dm);
 
        return 0;