#include <stdarg.h>
#include <string.h>
+#include <locale.h>
+
#include <glib/gi18n-lib.h>
#include <gio/gio.h>
return dm;
}
+gchar
+*gdaex_double_to_sql (gdouble number)
+{
+ gchar *ret;
+
+ char *cur = g_strdup (setlocale (LC_NUMERIC, NULL));
+ setlocale (LC_NUMERIC, "C");
+
+ ret = g_strdup_printf ("%f", number);
+
+ setlocale (LC_NUMERIC, cur);
+ g_free (cur);
+
+ return ret;
+}
+
/* PRIVATE */
static void
gdaex_create_connection_parser (GdaEx *gdaex)
/*
* gdaex.h
*
- * Copyright (C) 2005-2018 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2019 Andrea Zagli <azagli@libero.it>
*
* This file is part of libgdaex.
*
GdaDataModel *gdaex_meta_store_get_tables (GdaEx *gdaex, gboolean update_meta_store);
GdaDataModel *gdaex_meta_store_get_table_fields (GdaEx *gdaex, const gchar *table_name, gboolean update_meta_store);
+gchar *gdaex_double_to_sql (gdouble number);
+
G_END_DECLS
--- /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.
+ */
+
+#include <libgdaex.h>
+
+#include <libzakutils/libzakutils.h>
+
+int
+main (int argc, char **argv)
+{
+ gdouble number;
+
+ number = zak_utils_unformat_money ("123.456,78");
+
+ g_message ("%f", number);
+
+ g_message ("%s", gdaex_double_to_sql (number));
+
+ return 0;
+}