Error message with a SQL function

Поиск
Список
Период
Сортировка
От proghome@silesky.com (krystoffff)
Тема Error message with a SQL function
Дата
Msg-id 85898f7e.0308080613.6cfb3e7c@posting.google.com
обсуждение исходный текст
Ответы Re: Error message with a SQL function
Список pgsql-sql
Hi

I try to create the following SQL function:

CREATE FUNCTION update_affiliate(int,double precision,double
precision) RETURNS void AS ' UPDATE affiliate SET balance=balance +
$2, balance_in_points=balance_in_points + ( $2 / $3 ) WHERE id = $1; '
LANGUAGE 'sql';

but when I submit this query directly with PostgreSQL, I have the
following error message:

PostgreSQL said: ERROR: Unable to locate type oid 325664 in catalog 


I think the problem comes from the first parameter ($1) but I don't
understand because affiliate.id is indeed the primary key of the table
affiliate.

Has anybody an idea ?
Thanks
Krystoffff


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

Предыдущее
От: evl@my-mail.com.ua
Дата:
Сообщение: How to check: is some key referenced from sometable
Следующее
От: "Prasanth"
Дата:
Сообщение: Re: Retrieving tuple data on insert