/* find the new id */
GdaDataModel *dm;
guint id_new;
+ gchar *real_value;
id_new = 0;
sql = g_strdup_printf ("SELECT COALESCE (MAX (id)) FROM values");
id_new = gdaex_data_model_get_value_integer_at (dm, 0, 0);
}
id_new++;
-
+
+ if (g_strcmp0 (g_utf8_strup (value, -1), "NULL") == 0)
+ {
+ real_value = g_strdup ("NULL");
+ }
+ else
+ {
+ real_value = g_strconcat ("'",
+ gdaex_strescape ((const gchar *)string_unquote (value), NULL),
+ "'",
+ NULL);
+ }
+
sql = g_strdup_printf ("INSERT INTO values"
" (id, id_actions, id_fields, value)"
- " VALUES (%d, %d, %d, '%s')",
+ " VALUES (%d, %d, %d, %s)",
id_new, id_actions, field->id,
- gdaex_strescape ((const gchar *)string_unquote (value), NULL));
+ real_value);
gdaex_execute (priv->gdaex, sql);
}