Table *table,
gchar *field_name,
gchar *value);
-static gchar *value_string_unquote (const gchar *value);
+static gchar *string_unquote (const gchar *value);
static void parse_cond (GdaSqlExpr *cond, gchar **str);
static void audit_set_property (GObject *object,
{
GList *c = g_list_first (table->fields);
+ gchar *real_field;
+
+ real_field = string_unquote (field);
+
while (c != NULL)
{
- if (g_strcmp0 (((Field *)c->data)->name, field) == 0)
+ if (g_strcmp0 (((Field *)c->data)->name, real_field) == 0)
{
return (Field *)c->data;
}
{
GList *t = g_list_first (datasource->tables);
+ gchar *real_table;
+
+ real_table = string_unquote (table);
+
while (t != NULL)
{
- if (g_strcmp0 (((Table *)t->data)->name, table) == 0)
+ if (g_strcmp0 (((Table *)t->data)->name, real_table) == 0)
{
return (Table *)t->data;
}
GList *f = g_list_first (priv->datasources);
+ gchar *real_datasource;
+
+ real_datasource = string_unquote (datasource);
+
while (f != NULL)
{
- if (g_strcmp0 (((Datasource *)f->data)->name, datasource) == 0)
+ if (g_strcmp0 (((Datasource *)f->data)->name, real_datasource) == 0)
{
return (Datasource *)f->data;
}
" (id, id_actions, id_fields, value)"
" VALUES (%d, %d, %d, '%s')",
id_new, id_actions, field->id,
- gdaex_strescape ((const gchar *)value_string_unquote (value), NULL));
+ gdaex_strescape ((const gchar *)string_unquote (value), NULL));
gdaex_execute (priv->gdaex, sql);
}
}
static gchar
-*value_string_unquote (const gchar *value)
+*string_unquote (const gchar *str)
{
gchar *ret;
guint l;
- ret = g_strdup (value);
+ g_return_val_if_fail (str != NULL, NULL);
+
+ ret = g_strdup (str);
l = strlen (ret);
if (l > 0)
{
- if (ret[0] == '\'' && ret[l - 1] == '\'')
+ if (ret[0] == '"' || ret[0] == '\'')
+ {
+ ret = g_strdup (ret + 1);
+ }
+ if (ret[strlen (ret) - 1] == '"' || ret[strlen (ret) - 1] == '\'')
{
- ret = g_strndup (ret + 1, l - 2);
+ ret = g_strndup (ret, strlen (ret) - 1);
}
}