|
maxdb_fetch_field_directmaxdb_result::fetch_field_directFetch meta-data for a single field DescriptionProcedural style
mixed maxdb_fetch_field_direct
( resource
$result
, int $fieldnr
)Object oriented style
mixed maxdb_result::fetch_field_direct
( int
$fieldnr
)maxdb_fetch_field_direct returns an resource which contains field definition information from specified resultset. The value of fieldnr must be in the range from 0 to number of fields - 1. Return Values
Returns an resource which contains field definition information or
ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php The above example will output something similar to: Name: CNO Table: max. Len: 4 Flags: -1 Type: 0 See Also
|