gchar *value)
{
gchar *sql;
+ gchar *real_value;
AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
}
else
{
- /* 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");
- dm = gdaex_query (priv->gdaex, sql);
- if (dm != NULL && gda_data_model_get_n_rows (dm) == 1)
- {
- 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");
}
sql = g_strdup_printf ("INSERT INTO values"
- " (id, id_actions, id_fields, value)"
- " VALUES (%d, %d, %d, %s)",
- id_new, id_actions, field->id,
+ " (id_actions, id_fields, value)"
+ " VALUES (%d, %d, %s)",
+ id_actions, field->id,
real_value);
gdaex_execute (priv->gdaex, sql);
}