Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

odbc_longreadlen(3) [php man page]

ODBC_LONGREADLEN(3)							 1						       ODBC_LONGREADLEN(3)

odbc_longreadlen - Handling of LONG columns

SYNOPSIS
bool odbc_longreadlen (resource $result_id, int $length) DESCRIPTION
Enables handling of LONG and LONGVARBINARY columns. PARAMETERS
o $result_id - The result identifier. o $length - The number of bytes returned to PHP is controlled by the parameter length. If it is set to 0, Long column data is passed through to the client. RETURN VALUES
Returns TRUE on success or FALSE on failure. NOTES
Note Handling of LONGVARBINARY columns is also affected by odbc_binmode(3). PHP Documentation Group ODBC_LONGREADLEN(3)

Check Out this Related Man Page

ODBC_RESULT(3)								 1							    ODBC_RESULT(3)

odbc_result - Get result data

SYNOPSIS
mixed odbc_result (resource $result_id, mixed $field) DESCRIPTION
Get result data PARAMETERS
o $result_id - The ODBC resource. o $field - The field name being retrieved. It can either be an integer containing the column number of the field you want; or it can be a string containing the name of the field. RETURN VALUES
Returns the string contents of the field, FALSE on error, NULL for NULL data, or TRUE for binary data. EXAMPLES
The first call to odbc_result(3) returns the value of the third field in the current record of the query result. The second function call to odbc_result(3) returns the value of the field whose field name is "val" in the current record of the query result. An error occurs if a column number parameter for a field is less than one or exceeds the number of columns (or fields) in the current record. Similarly, an error occurs if a field with a name that is not one of the fieldnames of the table(s) that is(are) being queried. Example #1 odbc_result(3) examples <?php $item_3 = odbc_result($Query_ID, 3); $item_val = odbc_result($Query_ID, "val"); ?> NOTES
Field indices start from 1. Regarding the way binary or long column data is returned refer to odbc_binmode(3) and odbc_longreadlen(3). PHP Documentation Group ODBC_RESULT(3)
Man Page