ret = NULL;
if (tm_data != NULL)
{
- 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);
+ 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);
}
return ret;
ret = g_new0 (struct tm, 1);
ret->tm_year = g_date_time_get_year (gdatetime) - 1900;
ret->tm_mon = g_date_time_get_month (gdatetime) - 1;
- ret->tm_mday = g_date_time_get_day_of_week (gdatetime);
+ ret->tm_mday = g_date_time_get_day_of_month (gdatetime);
ret->tm_hour = g_date_time_get_hour (gdatetime);
ret->tm_min = g_date_time_get_minute (gdatetime);
ret->tm_sec = g_date_time_get_second (gdatetime);
+ mktime (ret);
return ret;
}
{
if (format == NULL)
{
- _format = g_strdup ("%Y-%m-%d %H:%M:%S");
+ _format = g_strdup ("%F %R:%S");
}
else
{
_format = g_strstrip (g_strdup (format));
- if (g_strcmp0 (_format, "") == 0)
+ if (g_strcmp0 (_format, "") == 0
+ || g_strcmp0 (_format, "datetime") == 0)
{
- _format = g_strdup ("%Y-%m-%d %H:%M:%S");
+ _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));
return ret;
}
+const gchar
+*solipa_gdatetime_to_sql (GDateTime *gdatetime, const gchar *format)
+{
+ const gchar *ret;
+ gchar *_format;
+
+ ret = g_strdup ("NULL");
+
+ if (gdatetime != 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 (gdatetime, _format));
+ }
+
+ return ret;
+}
+
GDateTime
*solipa_get_gdatetime_from_string (const gchar *string, const gchar *format)
{
{
if (g_strcmp0 (format_tokens[i], "%Y") == 0)
{
- year = strtol (str_tokens[i], NULL, 10) - 1900;
+ year = strtol (str_tokens[i], NULL, 10);
}
else if (g_strcmp0 (format_tokens[i], "%m") == 0)
{
- month = strtol (str_tokens[i], NULL, 10) - 1;
+ month = strtol (str_tokens[i], NULL, 10);
}
else if (g_strcmp0 (format_tokens[i], "%d") == 0)
{
g_free (new_format);
g_free (new_str);
- ret = g_date_time_new_local (year,
- month,
- day,
- hour,
- minute,
- seconds);
+ ret = g_date_time_new_utc (year,
+ month,
+ day,
+ hour,
+ minute,
+ seconds);
return ret;
}