cubrid_fetch_field Returns an object with certain properties &reftitle.description; objectcubrid_fetch_field resourceresult intfield_offset0 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 column not_null 1 if the column cannot be NULL unique_key 1 if the column is an unique key multiple_key 1 if the column is a non-unique key numeri 1 if the column is numeric type the type of the column &reftitle.parameters; result result comes from a call to cubrid_execute field_offset The numerical field offset. If the field offset is not specified, the next field (that was not yet retrieved by this function) is retrieved. The field_offset starts at 0. &reftitle.returnvalues; Object with certain properties of the specific column, when process is successful. &false; on failure. &reftitle.examples; <function>cubrid_fetch_field</function> example \n"; } echo "
        max_length:        $meta->max_length
        multiple_key:        $meta->multiple_key
        name:            $meta->name
        not_null:        $meta->not_null
        numeric:        $meta->numeric
        table:            $meta->table
        type:            $meta->type
        default:        $meta->def
        unique_key:        $meta->unique_key
        
"; cubrid_close_request($result); } ?> ]]>
&example.outputs;