/*
- * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
error = NULL;
sql = g_strdup_printf ("DELETE FROM %sroles", table_prefix);
- gda_execute_non_select_command (gdacon, sql, &error);
+ gda_connection_execute_non_select_command (gdacon, sql, &error);
g_free (sql);
if (error != NULL)
{
}
error = NULL;
sql = g_strdup_printf ("DELETE FROM %sroles_parents", table_prefix);
- gda_execute_non_select_command (gdacon, sql, &error);
+ gda_connection_execute_non_select_command (gdacon, sql, &error);
g_free (sql);
if (error != NULL)
{
}
error = NULL;
sql = g_strdup_printf ("DELETE FROM %sresources", table_prefix);
- gda_execute_non_select_command (gdacon, sql, &error);
+ gda_connection_execute_non_select_command (gdacon, sql, &error);
g_free (sql);
if (error != NULL)
{
}
error = NULL;
sql = g_strdup_printf ("DELETE FROM %sresources_parents", table_prefix);
- gda_execute_non_select_command (gdacon, sql, &error);
+ gda_connection_execute_non_select_command (gdacon, sql, &error);
g_free (sql);
if (error != NULL)
{
}
error = NULL;
sql = g_strdup_printf ("DELETE FROM %srules", table_prefix);
- gda_execute_non_select_command (gdacon, sql, &error);
+ gda_connection_execute_non_select_command (gdacon, sql, &error);
g_free (sql);
if (error != NULL)
{
error = NULL;
sql = g_strdup_printf ("SELECT COALESCE (MAX (id), 0) FROM %s",
table_name);
- dm = gda_execute_select_command (gdacon, sql, &error);
+ dm = gda_connection_execute_select_command (gdacon, sql, &error);
g_free (sql);
if (dm != NULL && gda_data_model_get_n_rows (dm) == 1)
{
" WHERE role_id = '%s'",
table_name,
role_id);
- dm = gda_execute_select_command (gdacon, sql, &error);
+ dm = gda_connection_execute_select_command (gdacon, sql, &error);
g_free (sql);
if (dm != NULL && gda_data_model_get_n_rows (dm) == 1)
{
" WHERE resource_id = '%s'",
table_name,
resource_id);
- dm = gda_execute_select_command (gdacon, sql, &error);
+ dm = gda_connection_execute_select_command (gdacon, sql, &error);
g_free (sql);
if (dm != NULL && gda_data_model_get_n_rows (dm) == 1)
{
table_name,
new_id,
autoz_irole_get_role_id (AUTOZ_IROLE (role->irole)));
- gda_execute_non_select_command (gdacon, sql, &error);
+ gda_connection_execute_non_select_command (gdacon, sql, &error);
g_free (sql);
if (error != NULL)
{
table_name_parent,
new_id,
id_parent);
- gda_execute_non_select_command (gdacon, sql, &error);
+ gda_connection_execute_non_select_command (gdacon, sql, &error);
g_free (sql);
if (error != NULL)
{
table_name,
new_id,
autoz_iresource_get_resource_id (AUTOZ_IRESOURCE (resource->iresource)));
- gda_execute_non_select_command (gdacon, sql, &error);
+ gda_connection_execute_non_select_command (gdacon, sql, &error);
g_free (sql);
if (error != NULL)
{
table_name_parent,
new_id,
id_parent);
- gda_execute_non_select_command (gdacon, sql, &error);
+ gda_connection_execute_non_select_command (gdacon, sql, &error);
g_free (sql);
if (error != NULL)
{
new_id,
id_roles,
id_resources);
- gda_execute_non_select_command (gdacon, sql, &error);
+ gda_connection_execute_non_select_command (gdacon, sql, &error);
g_free (sql);
if (error != NULL)
{
new_id,
id_roles,
id_resources);
- gda_execute_non_select_command (gdacon, sql, &error);
+ gda_connection_execute_non_select_command (gdacon, sql, &error);
g_free (sql);
if (error != NULL)
{
error = NULL;
sql = g_strdup_printf ("SELECT role_id FROM %sroles ORDER BY id",
prefix);
- dm = gda_execute_select_command (gdacon, sql, &error);
+ dm = gda_connection_execute_select_command (gdacon, sql, &error);
g_free (sql);
if (dm != NULL && error == NULL)
{
prefix,
prefix,
prefix);
- dm = gda_execute_select_command (gdacon, sql, &error);
+ dm = gda_connection_execute_select_command (gdacon, sql, &error);
g_free (sql);
if (dm != NULL && error == NULL)
{
error = NULL;
sql = g_strdup_printf ("SELECT resource_id FROM %sresources ORDER BY id",
prefix);
- dm = gda_execute_select_command (gdacon, sql, &error);
+ dm = gda_connection_execute_select_command (gdacon, sql, &error);
g_free (sql);
if (dm != NULL && error == NULL)
{
prefix,
prefix,
prefix);
- dm = gda_execute_select_command (gdacon, sql, &error);
+ dm = gda_connection_execute_select_command (gdacon, sql, &error);
g_free (sql);
if (dm != NULL && error == NULL)
{
prefix,
prefix,
prefix);
- dm = gda_execute_select_command (gdacon, sql, &error);
+ dm = gda_connection_execute_select_command (gdacon, sql, &error);
g_free (sql);
if (dm != NULL && error == NULL)
{
error = NULL;
sql = g_strdup_printf ("SELECT update FROM %stimestamp_update",
priv->table_prefix);
- dm = gda_execute_select_command (priv->gdacon, sql, &error);
+ dm = gda_connection_execute_select_command (priv->gdacon, sql, &error);
g_free (sql);
if (dm != NULL && error == NULL && gda_data_model_get_n_rows (dm) > 0)
{