* audit_action:
* @audit: an #Audit object.
* @action: the action's type.
- * @dn: the username that make the action.
+ * @username: the username that make the action.
* @datasource_name: the datasource's name.
* @table_name: the table's name.
* @...: a #NULL terminated list of couples field-value.
gboolean
audit_action (Audit *audit,
enum AuditActions action,
- const gchar *dn,
+ const gchar *username,
const gchar *datasource_name,
const gchar *table_name,
...)
if (g_strcmp0 (str, "") != 0)
{
- ret = audit_action_v (audit, action, dn, datasource_name, table_name, (const gchar **)g_strsplit (str, "|", -1));
+ ret = audit_action_v (audit, action, username, datasource_name, table_name, (const gchar **)g_strsplit (str, "|", -1));
}
return ret;
* audit_action_v:
* @audit: an #Audit object.
* @action: the action's type.
- * @dn: the username that make the action.
+ * @username: the username that make the action.
* @datasource_name: the datasource's name.
* @table_name: the table's name.
* @fields_values: a #NULL-terminated array of strings in the form
gboolean
audit_action_v (Audit *audit,
enum AuditActions action,
- const gchar *dn,
+ const gchar *username,
const gchar *datasource_name,
const gchar *table_name,
const gchar **fields_values)
{
/* TODO find the way to save more than 2 digits for the seconds */
sql = g_strdup_printf ("INSERT INTO actions"
- " (id, type, dn, date, id_tables)"
+ " (id, type, username, date, id_tables)"
" VALUES (%d, %d, '%s', '%04d-%02d-%02d %02d:%02d:%02d', %d)",
- id, action, dn,
+ id, action, username,
tm_ora->tm_year + 1900, tm_ora->tm_mon + 1, tm_ora->tm_mday,
tm_ora->tm_hour, tm_ora->tm_min, tm_ora->tm_sec,
table->id);
* audit_action_from_gdastatement:
* @audit: an #Audit object.
* @action: the action's type.
- * @dn: the username that make the action.
+ * @username: the username that make the action.
* @datasource_name: the datasource's name.
* @gda_statement: a #GdaStatement object.
*
gboolean
audit_action_from_gdastatement (Audit *audit,
enum AuditActions action,
- const gchar *dn,
+ const gchar *username,
const gchar *datasource_name,
GdaStatement *gda_statement)
{
if (g_strcmp0 (str, "") != 0)
{
- ret = audit_action_v (audit, action, dn, datasource_name, table_name, (const gchar **)g_strsplit (str, "|", -1));
+ ret = audit_action_v (audit, action, username, datasource_name, table_name, (const gchar **)g_strsplit (str, "|", -1));
}
return ret;