pggeodb.nancy.inra.fr/db_robot - db_robot on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Function: checkauth

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: a_table_name, a_key_column_name - Creates trigger on a table to prevent/allow updates and deletes of rows based on authorization token.

 

Options

Option

Value

Returns

integer

Language

sql

Parameters

text

text

 

Definition

CREATE OR REPLACE FUNCTION public.checkauth (
 text,
 text
)
RETURNS integer AS
$span$
SELECT
CheckAuth('', $1, $2)
$span$
LANGUAGE
'sql'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION public.checkauth(text, text)
IS 'args: a_table_name, a_key_column_name - Creates trigger on a table to prevent/allow updates and deletes of rows based on authorization token.';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51
Previous topic Chapter index Next topic