cubrid_field_type(PECL CUBRID >= 8.3.0) cubrid_field_type — 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. Список параметров
Возвращаемые значенияType of the column, on success. FALSE when invalid field_offset value. -1 if SQL sentence is not SELECT. ПримерыПример #1 cubrid_field_type() example
<?phpРезультат выполнения данного примера: Field Table Field Name Field Type code s_name char(1) code f_name varchar(6) |
||