typedef struct
{
gint id;
+ gchar *name;
gchar *cnc_string;
GdaEx *gdaex;
GList *tables;
AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
- sql = g_strdup_printf ("SELECT id, name FROM fields "
- "WHERE status <> 'D' AND id_tabelle = %d",
- table->id);
+ sql = g_strdup_printf ("SELECT id, name FROM fields"
+ " WHERE status <> 'D' AND id_tabelle = %d",
+ table->id);
dm = gdaex_query (priv->gdaex, sql);
if (dm == NULL)
AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
- sql = g_strdup_printf ("SELECT id, name FROM tables "
- "WHERE status <> 'D' AND id_datasources = %d",
- datasource->id);
+ sql = g_strdup_printf ("SELECT id, name FROM tables"
+ " WHERE status <> 'D' AND id_datasources = %d",
+ datasource->id);
dm = gdaex_query (priv->gdaex, sql);
if (dm == NULL)
- {
- g_warning ("Per il datasource \"%d\" non sono state configurate le tables.",
- datasource->id);
- return FALSE;
- }
+ {
+ g_warning ("Per il datasource \"%d\" non sono state configurate le tables.",
+ datasource->id);
+ return FALSE;
+ }
rows = gda_data_model_get_n_rows (dm);
if (rows == 0)
{
g_warning ("Per il datasource \"%d\" non sono state configurate le tables.",
- datasource->id);
+ datasource->id);
return FALSE;
}
AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
/* per ogni datasource nella table datasources devo aprire una connessione */
- dm = gdaex_query (priv->gdaex, "SELECT id, cnc_string"
+ dm = gdaex_query (priv->gdaex, "SELECT id, name, cnc_string"
" FROM datasources"
" WHERE status <> 'D'");
if (dm == NULL)
{
datas = (Datasource *)g_malloc (sizeof (Datasource));
- datas->id = gdaex_data_model_get_field_value_integer_at (dm, 0, "id");
- datas->cnc_string = gdaex_data_model_get_field_value_stringify_at (dm, 1, "cnc_string");
+ datas->id = gdaex_data_model_get_field_value_integer_at (dm, row, "id");
+ datas->name = gdaex_data_model_get_field_value_stringify_at (dm, row, "name");
+ datas->cnc_string = gdaex_data_model_get_field_value_stringify_at (dm, row, "cnc_string");
datas->gdaex = gdaex_new_from_string (datas->cnc_string);
*get_datasource_from_nome (Audit *audit,
const char *datasource)
{
- /*GList *f = g_list_first (audit->datasources);
+ GList *f = g_list_first (audit->datasources);
while (f != NULL)
{
}
f = g_list_next (f);
- }*/
+ }
return NULL;
}
if (field == NULL)
{
g_warning ("Impossibile trovare il field \"%s\" nei fields caricati",
- nome_campo);
+ nome_campo);
}
else
{
- sql = g_strdup_printf ("INSERT INTO valori "
- "(id_azioni, id_campi, value) "
- "VALUES (%d, %d, '%s')",
- id_azione, field->id, value);
+ sql = g_strdup_printf ("INSERT INTO valori"
+ " (id_azioni, id_campi, value)"
+ " VALUES (%d, %d, '%s')",
+ id_azione, field->id, value);
gdaex_execute (priv->gdaex, sql);
}
if (dm != NULL && gda_data_model_get_n_rows (dm) == 1)
{
- id = atol (gdaex_data_model_get_value_stringify_at (dm, 0, 0));
+ id = gdaex_data_model_get_value_integer_at (dm, 0, 0);
}
id++;
/* trovo il timestamp dell'operazione */
- t = time(NULL);
- tm_ora = localtime(&t);
+ t = time (NULL);
+ tm_ora = localtime (&t);
/* trovo il datasource */
datasource = get_datasource_from_nome (audit, nome_datasource);
{
case AUDIT_ACTION_INSERT:
/* salvo tutti i fields */
- sql = g_strdup_printf ("SELECT * FROM %s ",
+ sql = g_strdup_printf ("SELECT * FROM %s",
nome_tabella);
- sql_where = g_strdup ("WHERE TRUE");
+ sql_where = g_strdup (" WHERE TRUE");
nome_campo = va_arg (vargs, gchar *);
while (nome_campo != NULL)
{
value = va_arg (vargs, gchar *);
if (value == NULL) break;
- sql_where = g_strjoin (NULL, sql_where, " AND ", nome_campo, "='", value, "'", NULL);
+ sql_where = g_strconcat (sql_where, " AND ", nome_campo, "='", value, "'", NULL);
nome_campo = va_arg (vargs, gchar *);
}
- sql = g_strjoin (NULL, sql, sql_where, NULL);
+ sql = g_strconcat (sql, sql_where, NULL);
dm = gdaex_query (datasource->gdaex, sql);
if (dm == NULL) return FALSE;
case AUDIT_ACTION_BEFORE_UPDATE:
/* memorizzo tutta la table che sta per essere modificata */
- sql = g_strdup_printf ("SELECT * FROM %s ",
+ sql = g_strdup_printf ("SELECT * FROM %s",
nome_tabella);
- sql_where = g_strdup ("WHERE TRUE");
+ sql_where = g_strdup (" WHERE TRUE");
nome_campo = va_arg (vargs, gchar *);
while (nome_campo != NULL)
{
value = va_arg (vargs, gchar *);
if (value == NULL) break;
- sql_where = g_strjoin (NULL, sql_where, " AND ", nome_campo, "='", value, "'", NULL);
+ sql_where = g_strconcat (sql_where, " AND ", nome_campo, "='", value, "'", NULL);
nome_campo = va_arg (vargs, gchar *);
}
- sql = g_strjoin (NULL, sql, sql_where, NULL);
+ sql = g_strconcat (sql, sql_where, NULL);
dm = gdaex_query (datasource->gdaex, sql);
if (dm == NULL) return FALSE;
case AUDIT_ACTION_AFTER_UPDATE:
/* salvo i fields modificati */
- sql = g_strdup_printf ("SELECT * FROM %s ",
+ sql = g_strdup_printf ("SELECT * FROM %s",
nome_tabella);
- sql_where = g_strdup ("WHERE TRUE");
+ sql_where = g_strdup (" WHERE TRUE");
nome_campo = va_arg (vargs, gchar *);
while (nome_campo != NULL)
{
value = va_arg (vargs, gchar *);
if (value == NULL) break;
- sql_where = g_strjoin (NULL, sql_where, " AND ", nome_campo, "='", value, "'", NULL);
+ sql_where = g_strconcat (sql_where, " AND ", nome_campo, "='", value, "'", NULL);
nome_campo = va_arg (vargs, gchar *);
}
- sql = g_strjoin (NULL, sql, sql_where, NULL);
+ sql = g_strconcat (sql, sql_where, NULL);
dm = gdaex_query (datasource->gdaex, sql);
if (dm == NULL) return FALSE;