Re: Create function statement with insert statement

From: Christoph Haller <ch(at)rodos(dot)fzk(dot)de>
To: pgsql-sql(at)postgresql(dot)org
Cc: susan(at)hexworx(dot)com
Subject: Re: Create function statement with insert statement
Date: 2003-03-13 10:07:45
Message-ID: 3E705871.E0CBB9E@rodos.fzk.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

>
> I am trying to create a database trigger which inserts into a second
table.=
> I have created the following function in accordance with the
reference ma=
> nual documentation (7.2).=20=20
>
> CREATE OR REPLACE FUNCTION orderinsert(INTEGER, VARCHAR) RETURNS
INTEGER AS=
> '
> INSERT INTO HEXORDERS ( CUSTOMER_ID, ORDER_KEY, DISTRIBUTOR_ID,
ORDER_AMOUN=
> T, ORDER_GST ) VALUES ( $1, $2, 1, 0, 0 ) ;
>
> SELECT 1 ;
>
> ' LANGUAGE SQL ;
>
> It fails with the cryptic error "parse error at or near ;". Can
anyone te=
> ll me what is wrong with this syntax?
>
I cannot see anything wrong with this syntax, except the newline in
ORDER_AMOUN\nT. But this is probably originated from your
mailing tool, isn't it?
Could you provide us with the CREATE TABLE HEXORDERS ( ... );
statement? Did you try the INSERT command within psql?

Regards, Christoph

Browse pgsql-sql by date

  From Date Subject
Next Message Christoph Haller 2003-03-13 13:15:13 Re: Create function statement with insert statement
Previous Message Christoph Haller 2003-03-13 09:36:27 Re: The folding of unquoted names to lower case in PostgreSQL is