Re: Escaping the $1 parameter in stored procedures

Поиск
Список
Период
Сортировка
От limr@yahoo.com (robert)
Тема Re: Escaping the $1 parameter in stored procedures
Дата
Msg-id 75f517f5.0310150612.106c5d78@posting.google.com
обсуждение исходный текст
Ответ на Escaping the $1 parameter in stored procedures  (limr@yahoo.com (robert))
Список pgsql-sql
Found a solution:

-- my_constraint(0) = turn off constraint
-- my_constraint(1) = turn ON constraint
CREATE OR REPLACE FUNCTION my_constraint(INTEGER)
RETURNS VARCHAR AS 'DECLARE    cmd VARCHAR;BEGIN        IF $1 = 0    THEN        RAISE NOTICE ''Turning OFF
constraints'';       cmd := ''ALTER TABLE $tName DROP CONSTRAINT "$1"'';        EXECUTE cmd;        cmd := ''ALTER
TABLE$tName DROP CONSTRAINT "$2"'';        EXECUTE cmd;    ELSE        RAISE NOTICE ''Turning ON constraints'';
ALTERTABLE $tName            ADD FOREIGN KEY(key1) REFERENCES table1;        ALTER TABLE $tName            ADD FOREIGN
KEY(key2)REFERENCES table2;    END IF;    RETURN ''OK'';END;'LANGUAGE plpgsql;"
 




limr@yahoo.com (robert) wrote in message news:<75f517f5.0310131218.3a2907e5@posting.google.com>...
> I'm running Postgres 7.3.2 in Redhat 9.0.
> 
> I'm trying to execute a function below defined as a stored procedure
> 
>    ALTER TABLE tms_schedule DROP CONSTRAINT "$1";
> 
> However, postgres thinks the "$1" is a parameter value.  How do I tell
> postgres to treat it as a literal $1?
> 
> TIA,
> Robert


В списке pgsql-sql по дате отправления:

Предыдущее
От: Jean-Luc Lachance
Дата:
Сообщение: Re: Sorting problem
Следующее
От: Christopher Browne
Дата:
Сообщение: Re: indexing timestamp fields