maxdb_field_seek maxdb_result::field_seek Set result pointer to a specified field offset &reftitle.description; &style.procedural; boolmaxdb_field_seek resourceresult intfieldnr &style.oop; boolmaxdb_result::field_seek intfieldnr Sets the field cursor to the given offset. The next call to maxdb_fetch_field will retrieve the field definition of the column associated with that offset. To seek to the beginning of a row, pass an offset value of zero. &reftitle.returnvalues; maxdb_field_seek returns previuos value of field cursor. &reftitle.examples; &style.oop; query($query)) { /* Get field information for 2nd column */ $result->field_seek(1); $finfo = $result->fetch_field(); printf("Name: %s\n", $finfo->name); printf("Table: %s\n", $finfo->table); printf("max. Len: %d\n", $finfo->max_length); printf("Flags: %d\n", $finfo->flags); printf("Type: %d\n\n", $finfo->type); $result->close(); } /* close connection */ $maxdb->close(); ?> ]]> &style.procedural; name); printf("Table: %s\n", $finfo->table); printf("max. Len: %d\n", $finfo->max_length); printf("Flags: %d\n", $finfo->flags); printf("Type: %d\n\n", $finfo->type); maxdb_free_result($result); } /* close connection */ maxdb_close($link); ?> ]]> &example.outputs.similar; &reftitle.seealso; maxdb_fetch_field