fetchone
Syntax
fetchone [connect_id.]command_id]
Description
Fetches one result from prepared command command_id
on
connection connect_id
.
If command_id
is not specified, fetches one result from
the most recent command. The command must already have been run using
exec
.
For examples, see Prepare a SQL Statement for Subsequent Runs.