Re: [DOCS] PREPARE statement example error.

2004-10-29 Thread Tom Lane
"Wood, Bruce" <[EMAIL PROTECTED]> writes: > There is an error in your example for the prepare statement on page > http://developer.postgresql.org/docs/postgres/sql-prepare.html. Good catch --- none of those quotes should be there. Thanks. regards, tom lane -

[DOCS] PREPARE statement example error.

2004-10-29 Thread Wood, Bruce
There is an error in your example for the prepare statement on page http://developer.postgresql.org/docs/postgres/sql-prepare.html. Using the example from the link above rainstorm=> PREPARE fooplan (int, text, bool, numeric(8,2)) AS rainstorm-> INSERT INTO foo VALUES($1, '$2', '$3', '$4'); E