--- /dev/null
+/*
+ * Copyright (C) 2020 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <glib/gprintf.h>
+
+#include <gtk/gtk.h>
+
+#include <libzakutils/libzakutils.h>
+#include <libzakutilsjsonxml/libzakutilsjsonxml.h>
+
+#include <libgdaex.h>
+
+void
+foreach (gpointer key,
+ gpointer value,
+ gpointer user_data)
+{
+ g_printf ("%s: %s\n",
+ (gchar *)key,
+ (gchar *)g_value_get_string (value));
+}
+
+
+int
+main (int argc, char **argv)
+{
+ GdaEx *gdaex;
+
+ gchar *keys;
+ gchar *fields;
+
+ JsonParser *parser;
+ JsonNode *jnode_keys;
+ JsonNode *jnode_fields;
+
+ GHashTable *ht_fields;
+ GHashTable *ht_keys;
+
+ gtk_init (&argc, &argv);
+
+ gdaex = gdaex_new_from_string (g_strdup_printf ("SQLite://DB_DIR=%s;DB_NAME=grid.db", TESTSDIR));
+ if (gdaex == NULL)
+ {
+ g_error ("Unable to connect to the db.");
+ }
+
+ fields = g_strdup ("{\"id\": \"100\","
+ "\"name\": \"v_name\","
+ "\"surname\": \"v_surname\","
+ "\"birthday\": \"2010-08-23\","
+ "\"address\": \"rue morgue, 44\","
+ "\"incoming\": \"1342.81\"}");
+
+ parser = json_parser_new ();
+
+ if (!json_parser_load_from_data (parser, fields, -1, NULL))
+ {
+ return 0;
+ }
+
+ jnode_fields = json_parser_get_root (parser);
+
+ ht_fields = zak_utils_json_to_hashtable_gvalue (jnode_fields);
+
+ g_hash_table_foreach (ht_fields, foreach, NULL);
+
+ g_message ("%s", gdaex_get_sql_from_json (gdaex, GDAEX_SQL_SELECT, "clients", NULL, jnode_fields));
+ g_message ("%s", gdaex_get_sql_from_hashtable (gdaex, GDAEX_SQL_SELECT, "clients", NULL, ht_fields));
+
+ g_message ("%s", gdaex_get_sql_from_json (gdaex, GDAEX_SQL_INSERT, "clients", NULL, jnode_fields));
+ g_message ("%s", gdaex_get_sql_from_hashtable (gdaex, GDAEX_SQL_INSERT, "clients", NULL, ht_fields));
+
+ keys = g_strdup ("{\"id\": \"44\"}");
+
+ parser = json_parser_new ();
+
+ if (!json_parser_load_from_data (parser, keys, -1, NULL))
+ {
+ return 0;
+ }
+
+ jnode_keys = json_parser_get_root (parser);
+
+ ht_keys = zak_utils_json_to_hashtable_gvalue (jnode_keys);
+
+ g_hash_table_foreach (ht_keys, foreach, NULL);
+
+ g_message ("%s", gdaex_get_sql_from_json (gdaex, GDAEX_SQL_SELECT, "clients", jnode_keys, jnode_fields));
+ g_message ("%s", gdaex_get_sql_from_hashtable (gdaex, GDAEX_SQL_SELECT, "clients", ht_keys, ht_fields));
+
+ g_free (fields);
+
+ fields = g_strdup ("{\"name\": \"my new name\","
+ "\"surname\": \"and this is the new sur'name with '\"}");
+
+ parser = json_parser_new ();
+
+ if (!json_parser_load_from_data (parser, fields, -1, NULL))
+ {
+ return 0;
+ }
+
+ jnode_fields = json_parser_get_root (parser);
+
+ ht_fields = zak_utils_json_to_hashtable_gvalue (jnode_fields);
+
+ g_hash_table_foreach (ht_fields, foreach, NULL);
+
+ g_message ("%s", gdaex_get_sql_from_json (gdaex, GDAEX_SQL_UPDATE, "clients", jnode_keys, jnode_fields));
+ g_message ("%s", gdaex_get_sql_from_hashtable (gdaex, GDAEX_SQL_UPDATE, "clients", ht_keys, ht_fields));
+
+ g_free (fields);
+ g_free (keys);
+
+ g_message ("%s", gdaex_get_sql_from_json (gdaex, GDAEX_SQL_DELETE, "clients", jnode_keys, NULL));
+ g_message ("%s", gdaex_get_sql_from_hashtable (gdaex, GDAEX_SQL_DELETE, "clients", ht_keys, NULL));
+
+ return 0;
+}