ret = NULL;
if (tm_data != NULL)
{
- ret = g_date_time_new_utc (tm_data->tm_year + 1900,
- tm_data->tm_mon + 1,
- tm_data->tm_mday,
- tm_data->tm_hour,
- tm_data->tm_min,
- tm_data->tm_sec);
+ ret = g_date_time_new_local (tm_data->tm_year + 1900,
+ tm_data->tm_mon + 1,
+ tm_data->tm_mday,
+ tm_data->tm_hour,
+ tm_data->tm_min,
+ tm_data->tm_sec);
}
return ret;
if (tm_data != NULL)
{
- if (format == NULL)
- {
- _format = g_strdup ("%F %R:%S");
- }
- else
- {
- _format = g_strstrip (g_strdup (format));
- if (g_strcmp0 (_format, "") == 0
- || g_strcmp0 (_format, "datetime") == 0)
- {
- _format = g_strdup ("%F %R:%S");
- }
- else if (g_strcmp0 (_format, "date") == 0)
- {
- _format = g_strdup ("%F");
- }
- else if (g_strcmp0 (_format, "time") == 0)
- {
- _format = g_strdup ("%R:%S");
- }
- }
- ret = g_strdup_printf ("'%s'", g_date_time_format (solipa_tm_to_gdatetime (tm_data), _format));
+ ret = solipa_gdatetime_to_sql (solipa_tm_to_gdatetime (tm_data), _format);
}
return ret;
g_free (new_format);
g_free (new_str);
- ret = g_date_time_new_utc (year,
- month,
- day,
- hour,
- minute,
- seconds);
+ ret = g_date_time_new_local (year,
+ month,
+ day,
+ hour,
+ minute,
+ seconds);
return ret;
}
--- /dev/null
+/*
+ * Copyright (C) 2011 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 <solipa.h>
+#include <utils.h>
+
+int
+main (int argc, char *argv[])
+{
+ GDateTime *gdatetime;
+
+ g_type_init ();
+
+ if (argc == 3)
+ {
+ gdatetime = solipa_get_gdatetime_from_string (argv[1], argv[2]);
+ }
+ else
+ {
+ g_message ("Usage: utils_gdatetime <date time string> <date time format string>");
+ return 0;
+ }
+
+ if (gdatetime == NULL)
+ {
+ g_message ("Unabel to get a GDateTime object from the string «%s».", argv[1]);
+ return 0;
+ }
+
+ g_message ("g_date_time_format %s", g_date_time_format (gdatetime, "%d/%m/%Y %H.%M.%S"));
+ g_message ("solipa_gdatetime_to_sql %s", solipa_gdatetime_to_sql (gdatetime, "datetime"));
+
+ return 0;
+}