--- /dev/null
+/*
+ * Copyright (C) 2019 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
+#include <gtk/gtk.h>
+#include <libgdaex.h>
+
+static gchar *cnc_string = NULL;
+static gchar **tables = NULL;
+
+static GOptionEntry entries[] =
+{
+ { "cnc_string", 'c', 0, G_OPTION_ARG_STRING, &cnc_string, "Connection string", NULL},
+ { "table", 't', 0, G_OPTION_ARG_STRING_ARRAY, &tables, "Table (can be used more times)", NULL },
+ { NULL }
+};
+
+
+int
+main (int argc, char **argv)
+{
+ GdaEx *gdaex;
+
+ GError *error;
+
+ GOptionContext *context;
+
+ guint l;
+ guint i;
+
+ GdaSet *gdaset;
+
+ gda_init ();
+
+ error = NULL;
+ context = g_option_context_new ("- export table(s) to csv");
+ g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
+ if (!g_option_context_parse (context, &argc, &argv, &error))
+ {
+ g_error ("Error command line parsing: %s.",
+ error != NULL && error->message != NULL ? error->message : "no details");
+ return 0;
+ }
+
+ if (cnc_string == NULL)
+ {
+ g_error ("No connection string supplied.");
+ return 0;
+ }
+
+ gdaex = gdaex_new_from_string (cnc_string);
+ if (gdaex == NULL)
+ {
+ g_error ("Unable to connect to database: %s", cnc_string);
+ }
+
+ l = g_strv_length (tables);
+ if (l < 1)
+ {
+ g_error ("No table(s) to export supplied.");
+ return 0;
+ }
+
+ gdaset = gda_set_new_inline (5,
+ "NAMES_ON_FIRST_LINE", G_TYPE_BOOLEAN, TRUE,
+ "SEPARATOR", G_TYPE_STRING, ";",
+ "QUOTE", G_TYPE_STRING, "",
+ "OVERWRITE", G_TYPE_BOOLEAN, TRUE,
+ "NULL_AS_EMPTY", G_TYPE_BOOLEAN, TRUE);
+
+ for (i = 0; i < l; i++)
+ {
+ gchar *sql;
+ GdaDataModel *dm;
+
+ sql = g_strdup_printf ("SELECT * FROM %s",
+ tables[i]);
+ dm = gdaex_query (gdaex, sql);
+ g_free (sql);
+ if (!gdaex_data_model_is_empty (dm))
+ {
+ error = NULL;
+ gda_data_model_export_to_file (dm,
+ GDA_DATA_MODEL_IO_TEXT_SEPARATED,
+ g_strdup_printf ("%s.csv", tables[i]),
+ NULL,
+ 0,
+ NULL,
+ 0,
+ gdaset,
+ &error);
+ }
+
+ if (dm != NULL)
+ {
+ g_object_unref (dm);
+ }
+ }
+
+ return 0;
+}