Oracle 5.0 Reference Manual page 2238

Table of Contents

Advertisement

CR_UNKNOWN_ERROR
An unknown error occurred.
Example
See the Example in
20.6.10.23.
mysql_stmt_row_seek()
MYSQL_ROW_OFFSET mysql_stmt_row_seek(MYSQL_STMT *stmt, MYSQL_ROW_OFFSET
offset)
Description
Sets the row cursor to an arbitrary row in a statement result set. The
should be a value returned from
This value is not a row number; if you want to seek to a row within a result set by number, use
mysql_stmt_data_seek()
This function requires that the result set structure contains the entire result of the query, so
mysql_stmt_row_seek()
Return Values
The previous value of the row cursor. This value may be passed to a subsequent call to
mysql_stmt_row_seek().
Errors
None.
20.6.10.24.
mysql_stmt_row_tell()
MYSQL_ROW_OFFSET mysql_stmt_row_tell(MYSQL_STMT *stmt)
Description
Returns the current position of the row cursor for the last mysql_stmt_fetch(). This value can be
used as an argument to mysql_stmt_row_seek().
You should use
Return Values
The current offset of the row cursor.
Errors
None.
20.6.10.25.
mysql_stmt_send_long_data()
my_bool mysql_stmt_send_long_data(MYSQL_STMT *stmt, unsigned int
parameter_number, const char *data, unsigned long length)
Description
Enables an application to send parameter data to the server in pieces (or "chunks"). Call this function
after
mysql_stmt_bind_param()
times to send the parts of a character or binary data value for a column, which must be one of the
or
data types.
BLOB
C API Prepared Statement Function Descriptions
[2941]
Section 20.6.10.11,
mysql_stmt_row_tell()
instead.
may be used only in conjunction with mysql_stmt_store_result().
mysql_stmt_row_tell()
and before mysql_stmt_execute(). It can be called multiple
"mysql_stmt_fetch()".
or from mysql_stmt_row_seek().
only after mysql_stmt_store_result().
2218
value is a row offset that
offset
TEXT

Advertisement

Table of Contents
loading

This manual is also suitable for:

Mysql 5.0

Table of Contents