--- /dev/null
+/*
+ * Copyright (C) 2020 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <libzakcgi/libzakcgi.h>
+#include <libzakform/libzakform.h>
+#include <libzakformcgi/libzakformcgi.h>
+#include <libzakformgdaex/libzakformgdaex.h>
+
+int
+main (int argc, char *argv[])
+{
+ ZakCgiMain *cgi;
+ GdaEx *gdaex;
+
+ ZakFormCgiForm *form;
+ ZakFormGdaexProvider *provider;
+
+ gda_init ();
+
+ cgi = zak_cgi_main_new ();
+
+ form = zak_form_cgi_form_new (cgi, NULL);
+
+ if (argc == 4)
+ {
+ gdaex = gdaex_new_from_string (argv[1]);
+ if (gdaex == NULL)
+ {
+ g_error ("Unable to connect to the db: %s.", argv[1]);
+ }
+
+ provider = zak_form_gdaex_provider_new (gdaex, argv[2]);
+
+ zak_form_form_load_from_file (ZAK_FORM_FORM (form), argv[3]);
+
+ g_warning ("%s",
+ zak_form_gdaex_provider_get_create_table_str (provider, zak_form_form_get_elements (ZAK_FORM_FORM (form))));
+ }
+
+ return 0;
+}