Re: [DOCS] [GENERAL] Turning a subselect into an array

2004-10-29 Thread Jim C. Nasby
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

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