"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
-
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