type cast of function arguments

Поиск
Список
Период
Сортировка
От A B
Тема type cast of function arguments
Дата
Msg-id dbbf25900805150744i2751c331y518c99ffae08ed40@mail.gmail.com
обсуждение исходный текст
Ответы Re: type cast of function arguments
Список pgsql-novice
I have written this little silly function

CREATE OR REPLACE FUNCTION recordMail(customerId_ integer, message_
VARCHAR(240)) RETURNS void AS $$
BEGIN
    INSERT INTO MailRecord (custid,message) VALUES (customerId_, message_);
END;
$$ LANGUAGE plpgsql;

And it is created, and then I do:

select recordMail(10,'asd');

and I get


ERROR:  function recordmail(integer, "unknown") does not exist
LINE 1: select recordMail(10,'asd');
               ^
HINT:  No function matches the given name and argument types. You may
need to add explicit type casts.

What is wrong here and how do I fix it?

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

Предыдущее
От: "A. Kretschmer"
Дата:
Сообщение: Re: Transaction inside of functions
Следующее
От: "A B"
Дата:
Сообщение: Problem with function, type cast?