Thanks again for the help. I did manage to find that after a bunch of
searching in the mailing list. There should really be a portion of the
docs dedicated to array handling.
On Fri, Oct 29, 2004 at 10:40:57PM -0600, Michael Fuhr wrote:
> On Fri, Oct 29, 2004 at 05:13:02PM -0500, Jim C. Nasby wrot
"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