Class DBI::DBD::SQLRelay::Statement
In: SQLRelay.rb
Parent: DBI::BaseStatement

Methods

Public Class methods

Public Instance methods

Binds value to param defined earlier in the prepare call. attribs is currently unused.

Returns an array of hashes. Each hash contains a ‘name’, ‘type_name’ and ‘precision’ key.

Send a SQL query to the server and returns the number of rows returned. Raises a DBI::ProgrammingError if it failed.

Returns one row of the result set.

Returns the rest of the result set.

Returns the next "cnt" rows rest of the result set.

Returns one row of the result set. Which row depends on direction and offset. For DBI::SQL_FETCH_NEXT the next row is returned. For DBI::SQL_FETCH_PRIOR the prior row is returned. For DBI::SQL_FETCH_FIRST the first row is returned. For DBI::SQL_FETCH_LAST the last row is returned. For DBI::SQL_FETCH_ABSOLUTE the "offset" row is returned. For DBI::SQL_FETCH_RELATIVE the row "offset" rows from the current row is returned.

Invalidates the statement.

Returns the number of rows in the current result set.

[Validate]