Re: cannot create function that uses variable table name

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: cannot create function that uses variable table name
Дата
Msg-id 20030116204152.I15804-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на cannot create function that uses variable table name  ("Matthew Nuzum" <cobalt@bearfruit.org>)
Список pgsql-sql
On Thu, 16 Jan 2003, Matthew Nuzum wrote:

> I have a number of tables in my database that use the concept of
> �display order�, which is a field that can be used in an order by clause
> to dictate what order the results should come out in.
> �
> I thought I would be crafty and devise a function that would always
> return the highest numbered item in the table.  But it doesn�t work.  It
> always gives me a parse error at $1.  Here�s the function:
>
> CREATE OR REPLACE FUNCTION get_last_dsply_order(
>    varchar,            -- tablename
>    varchar,            -- id_col_name
>    varchar)            -- where_item
>    RETURNS integer AS '
>    DECLARE total_items integer;
>       tablename ALIAS FOR $1;
>       id_col_name ALIAS FOR $2;
>       where_item ALIAS FOR $3;
>    BEGIN
>       SELECT INTO total_items count(*) FROM tablename WHERE id_col_name
> = where_item;
>    RETURN total_items;
> END;
> ' LANGUAGE 'plpgsql';

You'll need to look into EXECUTE. You also are going to have to
watch out for concurrency issues since two transactions calling
this function at the same time for the same args are likely to
give incorrect results.



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

Предыдущее
От: chester c young
Дата:
Сообщение: Re: cannot create function that uses variable table name
Следующее
От: "D'Arcy J.M. Cain"
Дата:
Сообщение: Re: cannot create function that uses variable table name