. */ interface IResult { /** * Return associative array of select * * @return array associative array of select */ function fetchAssoc(); /** * Fetch all result rows as an associative array * * @return 2-dimensional array containing all result rows */ function fetchAssocAll(); /** * Adjusts the result pointer to an arbitrary row in the result * * @param int row */ function dataSeek($row); /** * Free result */ function freeResult(); /** * Return number of rows in result */ function numRows(); } ?>