|
maxdb_fetch_fieldmaxdb_result::fetch_fieldReturns the next field in the result set DescriptionProcedural style
mixed maxdb_fetch_field
( resource
$result
)Object oriented style
mixed maxdb_result::fetch_field
( void
)
The maxdb_fetch_field returns the definition of one column
of a result set as an resource. Call this function repeatedly to retrieve
information about all columns in the result set.
maxdb_fetch_field returns 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: NAME Table: max. Len: 10 Flags: -1 Type: 2 Name: CNO Table: max. Len: 4 Flags: -1 Type: 0 See Also
|