unsubscribe
Sent via the WebMail system at expertss.com
---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
# [EMAIL PROTECTED] / 2005-08-02 13:09:58 -0400:
> Roman Neuhauser <[EMAIL PROTECTED]> writes:
> > "The variant of FETCH described here returns the data as if it were a
> > SELECT result rather than placing it in host variables."
>
> > That doesn't seem to be the case.
>
> It means it returns dat
Roman Neuhauser <[EMAIL PROTECTED]> writes:
> "The variant of FETCH described here returns the data as if it were a
> SELECT result rather than placing it in host variables."
> That doesn't seem to be the case.
It means it returns data *to the client* in the same way a SELECT does.
"The variant of FETCH described here returns the data as if it were a
SELECT result rather than placing it in host variables."
http://www.postgresql.org/docs/current/static/sql-fetch.html
That doesn't seem to be the case. Try the following script:
CREATE TABLE t1 (t1i INT, t1c CHAR(1));
CREATE T