cubrid_field_type

(PECL CUBRID >= 8.3.0) Return the type of the column corresponding to the given field offset string cubrid_field_type ( resource $result, int $field_offset ) This function returns the type of the column corresponding to the given field offset. The returned field type could be one of the following: "int", "real", "string", etc. Parameters: result Array type of the fetche

cubrid_field_table

(PECL CUBRID >= 8.3.0) Return the name of the table of the specified field string cubrid_field_table ( resource $result, int $field_offset ) This function returns the name of the table of the specified field. This is useful when using large select queries with JOINS. Parameters: result Array type of the fetched result CUBRID_NUM, CUBRID_ASSOC, CUBRID_BOTH.

cubrid_field_seek

(PECL CUBRID >= 8.3.0) Move the result set cursor to the specified field offset bool cubrid_field_seek ( resource $result [, int $field_offset = 0 ] ) This function moves the result set cursor to the specified field offset. This offset is used by cubrid_fetch_field() if it doesn't include a field offset. It returns TRUE on success or FALSE on failure. Parameters: result

cubrid_field_name

(PECL CUBRID >= 8.3.0) Return the name of the specified field index string cubrid_field_name ( resource $result, int $field_offset ) This function returns the name of the specified field index on success or it returns FALSE on failure. Parameters: result result comes from a call to cubrid_execute() field_offset The numerical field offs

cubrid_field_len

(PECL CUBRID >= 8.3.0) Get the maximum length of the specified field int cubrid_field_len ( resource $result, int $field_offset ) This function returns the maximum length of the specified field on success, or it returns FALSE on failure. Parameters: result result comes from a call to cubrid_execute() field_offset The numerical field off

cubrid_field_flags

(PECL CUBRID >= 8.3.0) Return a string with the flags of the given field offset string cubrid_field_flags ( resource $result, int $field_offset ) This function returns a string with the flags of the given field offset separated by space. You can split the returned value using explode. The possible flags could be: not_null, primary_key, unique_key, foreign_key, auto_increment, shared, reverse_index, reverse_unique and time

cubrid_fetch_row

(PECL CUBRID >= 8.3.0) Return a numerical array with the values of the current row array cubrid_fetch_row ( resource $result [, int $type ] ) This function returns a numerical array with the values of the current row from the result set, starting from 0, and moves the internal data pointer ahead. Parameters: result result comes from a call to cubrid_execute()

cubrid_fetch_object

(PECL CUBRID >= 8.3.0) Fetche the next row and returns it as an object object cubrid_fetch_object ( resource $result [, string $class_name [, array $params [, int $type ]]] ) This function returns an object with the column names of the result set as properties. The values of these properties are extracted from the current row of the result. Parameters: result result com

cubrid_fetch_lengths

(PECL CUBRID >= 8.3.0) Return an array with the lengths of the values of each field from the current row array cubrid_fetch_lengths ( resource $result ) This function returns an numeric array with the lengths of the values of each field from the current row of the result set or it returns FALSE on failure. Note: If field data type is BLOB/CLOB, you should get its length by using cubrid_lob_size(). Pa

cubrid_fetch_field

(PECL CUBRID >= 8.3.1) Get column information from a result and return as an object object cubrid_fetch_field ( resource $result [, int $field_offset = 0 ] ) This function returns an object with certain properties of the specific column. The properties of the object are: name column name table name of the table that the column belongs to def default value of the column max_length maximum length of the col