Lines Matching refs:result

138  * The returned result resource should be passed to
140 * functions for dealing with result tables, to access the returned data.
160 * Send an SQL query to MySQL without fetching and buffering the result rows.
196 * @return resource|bool a positive MySQL result resource to the query result,
211 * @return resource|false a result pointer resource on success, or false on
213 * this result pointer, or any function for result tables, such as
227 * @return resource|false A result pointer resource on success or false on failure.
230 * traverse this result pointer, or any function for result tables,
248 * @return resource|false A result pointer resource on success, or false on
252 * The returned result can be used with <b>mysql_field_flags</b>,
265 * @return resource|false A result pointer resource on success or false on failure.
335 * Get result data
336 * @link https://php.net/manual/en/function.mysql-result.php
337 * @param resource $result
339 * The row number from the result that's being retrieved. Row numbers
351 * @return string The contents of one cell from a MySQL result set on success, or
356 function mysql_result ($result, $row, $field = 0) {}
359 * Get number of rows in result
361 …* @param resource $result <p>The result resource that is being evaluated. This result comes from a…
362 * @return int|false <p>The number of rows in the result set on success or FALSE on failure. </p>
366 function mysql_num_rows ($result) {}
369 * Get number of fields in result
371 * @param resource $result
372 * @return int the number of fields in the result set resource on
377 function mysql_num_fields ($result) {}
380 * Get a result row as an enumerated array
382 * @param resource $result
388 * the result associated with the specified result identifier. The
389 * row is returned as an array. Each result column is stored in an
394 function mysql_fetch_row ($result) {}
397 * Fetch a result row as an associative array, a numeric array, or both
399 * @param resource $result
416 * If two or more columns of the result have the same field names,
424 function mysql_fetch_array ($result, $result_type = MYSQL_BOTH) {}
427 * Fetch a result row as an associative array
429 * @param resource $result
434 * If two or more columns of the result have the same field names,
437 * result with numeric indices by using
444 function mysql_fetch_assoc ($result) {}
447 * Fetch a result row as an object
449 * @param resource $result
463 * the result associated with the specified result identifier. The
464 * row is returned as an array. Each result column is stored in an
469 function mysql_fetch_object ($result, $class_name = 'stdClass', array $params = null ) {}
472 * Move internal result pointer
474 * @param resource $result
476 * The desired row number of the new result pointer.
482 function mysql_data_seek ($result, $row_number) {}
485 * Get the length of each output in a result
487 * @param resource $result
492 function mysql_fetch_lengths ($result) {}
495 * Get column information from a result and return as an object
497 * @param resource $result
523 function mysql_fetch_field ($result, $field_offset = 0) {}
526 * Set result pointer to a specified field offset
528 * @param resource $result
534 function mysql_field_seek ($result, $field_offset) {}
537 * Free result memory
538 * @link https://php.net/manual/en/function.mysql-free-result.php
539 * @param resource $result
542 * If a non-resource is used for the result, an
550 function mysql_free_result ($result) {}
553 * Get the name of the specified field in a result
555 * @param resource $result
561 function mysql_field_name ($result, $field_offset) {}
566 * @param resource $result
572 function mysql_field_table ($result, $field_offset) {}
577 * @param resource $result
583 function mysql_field_len ($result, $field_offset) {}
586 * Get the type of the specified field in a result
588 * @param resource $result
598 function mysql_field_type ($result, $field_offset) {}
601 * Get the flags associated with the specified field in a result
603 * @param resource $result
605 * @return string|false a string of flags associated with the result or false on failure.
618 function mysql_field_flags ($result, $field_offset) {}
767 * @param $result
772 function mysql_fieldname ($result, $field_index) {}
775 * @param $result
780 function mysql_fieldtable ($result, $field_offset) {}
783 * @param $result
788 function mysql_fieldlen ($result, $field_offset) {}
791 * @param $result
796 function mysql_fieldtype ($result, $field_offset) {}
799 * @param $result
804 function mysql_fieldflags ($result, $field_offset) {}
815 * @param $result
819 function mysql_freeresult ($result) {}
822 * @param $result
826 function mysql_numfields ($result) {}
832 …* @param resource $result <p>The result resource that is being evaluated. This result comes from a…
833 * @return int|false <p>The number of rows in the result set on success or FALSE on failure. </p>
837 function mysql_numrows ($result) {}
866 * @param resource $result <p>
867 * The result pointer from a call to <b>mysql_list_dbs</b>.
870 * The index into the result set.
881 function mysql_db_name ($result, $row, $field = null) {}
884 * @param $result
890 function mysql_dbname ($result, $row, $field) {}
895 * @param resource $result <p>
896 * A result pointer resource that's returned from
905 * traverse this result pointer, or any function for result tables,
911 function mysql_tablename ($result, $i) {}
914 * @param $result
920 function mysql_table_name ($result, $row, $field) {}
934 * fields. This index starts with 0, the first field in the result.