<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.mysql.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'ref.mysql.php',
    1 => 'MySQL Функції',
    2 => 'MySQL Функції',
  ),
  'up' => 
  array (
    0 => 'book.mysql.php',
    1 => 'MySQL (Original)',
  ),
  'prev' => 
  array (
    0 => 'mysql.examples-basic.php',
    1 => 'MySQL extension overview example',
  ),
  'next' => 
  array (
    0 => 'function.mysql-affected-rows.php',
    1 => 'mysql_affected_rows',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/mysql/reference.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/ref.mysql.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="ref.mysql" class="reference">
  <h1 class="title">MySQL Функції</h1>

  <div class="partintro">
   <div class="section" id="mysql.notes">
   <h2 class="title">Примітки</h2>
    <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
     <p class="para">
      Most MySQL functions accept <code class="parameter">link_identifier</code> as
      the last optional parameter. If it is not provided, last opened
      connection is used. If it doesn&#039;t exist, connection is tried to
      establish with default parameters defined in <var class="filename">php.ini</var>. If it is not
      successful, functions return <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>.
     </p>
    </p></blockquote>
   </div>
  </div>


































































































































































































































































































 <h2>Зміст</h2><ul class="chunklist chunklist_reference"><li><a href="function.mysql-affected-rows.php">mysql_affected_rows</a> — Get number of affected rows in previous MySQL operation</li><li><a href="function.mysql-client-encoding.php">mysql_client_encoding</a> — Returns the name of the character set</li><li><a href="function.mysql-close.php">mysql_close</a> — Close MySQL connection</li><li><a href="function.mysql-connect.php">mysql_connect</a> — Open a connection to a MySQL Server</li><li><a href="function.mysql-create-db.php">mysql_create_db</a> — Create a MySQL database</li><li><a href="function.mysql-data-seek.php">mysql_data_seek</a> — Move internal result pointer</li><li><a href="function.mysql-db-name.php">mysql_db_name</a> — Retrieves database name from the call to mysql_list_dbs</li><li><a href="function.mysql-db-query.php">mysql_db_query</a> — Selects a database and executes a query on it</li><li><a href="function.mysql-drop-db.php">mysql_drop_db</a> — Drop (delete) a MySQL database</li><li><a href="function.mysql-errno.php">mysql_errno</a> — Returns the numerical value of the error message from previous MySQL operation</li><li><a href="function.mysql-error.php">mysql_error</a> — Returns the text of the error message from previous MySQL operation</li><li><a href="function.mysql-escape-string.php">mysql_escape_string</a> — Escapes a string for use in a mysql_query</li><li><a href="function.mysql-fetch-array.php">mysql_fetch_array</a> — Fetch a result row as an associative array, a numeric array, or both</li><li><a href="function.mysql-fetch-assoc.php">mysql_fetch_assoc</a> — Fetch a result row as an associative array</li><li><a href="function.mysql-fetch-field.php">mysql_fetch_field</a> — Get column information from a result and return as an object</li><li><a href="function.mysql-fetch-lengths.php">mysql_fetch_lengths</a> — Get the length of each output in a result</li><li><a href="function.mysql-fetch-object.php">mysql_fetch_object</a> — Fetch a result row as an object</li><li><a href="function.mysql-fetch-row.php">mysql_fetch_row</a> — Get a result row as an enumerated array</li><li><a href="function.mysql-field-flags.php">mysql_field_flags</a> — Get the flags associated with the specified field in a result</li><li><a href="function.mysql-field-len.php">mysql_field_len</a> — Returns the length of the specified field</li><li><a href="function.mysql-field-name.php">mysql_field_name</a> — Get the name of the specified field in a result</li><li><a href="function.mysql-field-seek.php">mysql_field_seek</a> — Set result pointer to a specified field offset</li><li><a href="function.mysql-field-table.php">mysql_field_table</a> — Get name of the table the specified field is in</li><li><a href="function.mysql-field-type.php">mysql_field_type</a> — Get the type of the specified field in a result</li><li><a href="function.mysql-free-result.php">mysql_free_result</a> — Free result memory</li><li><a href="function.mysql-get-client-info.php">mysql_get_client_info</a> — Get MySQL client info</li><li><a href="function.mysql-get-host-info.php">mysql_get_host_info</a> — Get MySQL host info</li><li><a href="function.mysql-get-proto-info.php">mysql_get_proto_info</a> — Get MySQL protocol info</li><li><a href="function.mysql-get-server-info.php">mysql_get_server_info</a> — Get MySQL server info</li><li><a href="function.mysql-info.php">mysql_info</a> — Get information about the most recent query</li><li><a href="function.mysql-insert-id.php">mysql_insert_id</a> — Get the ID generated in the last query</li><li><a href="function.mysql-list-dbs.php">mysql_list_dbs</a> — List databases available on a MySQL server</li><li><a href="function.mysql-list-fields.php">mysql_list_fields</a> — List MySQL table fields</li><li><a href="function.mysql-list-processes.php">mysql_list_processes</a> — List MySQL processes</li><li><a href="function.mysql-list-tables.php">mysql_list_tables</a> — List tables in a MySQL database</li><li><a href="function.mysql-num-fields.php">mysql_num_fields</a> — Get number of fields in result</li><li><a href="function.mysql-num-rows.php">mysql_num_rows</a> — Get number of rows in result</li><li><a href="function.mysql-pconnect.php">mysql_pconnect</a> — Open a persistent connection to a MySQL server</li><li><a href="function.mysql-ping.php">mysql_ping</a> — Ping a server connection or reconnect if there is no connection</li><li><a href="function.mysql-query.php">mysql_query</a> — Send a MySQL query</li><li><a href="function.mysql-real-escape-string.php">mysql_real_escape_string</a> — Escapes special characters in a string for use in an SQL statement</li><li><a href="function.mysql-result.php">mysql_result</a> — Get result data</li><li><a href="function.mysql-select-db.php">mysql_select_db</a> — Select a MySQL database</li><li><a href="function.mysql-set-charset.php">mysql_set_charset</a> — Sets the client character set</li><li><a href="function.mysql-stat.php">mysql_stat</a> — Get current system status</li><li><a href="function.mysql-tablename.php">mysql_tablename</a> — Get table name of field</li><li><a href="function.mysql-thread-id.php">mysql_thread_id</a> — Return the current thread ID</li><li><a href="function.mysql-unbuffered-query.php">mysql_unbuffered_query</a> — Send an SQL query to MySQL without fetching and buffering the result rows</li></ul>
</div>
<?php manual_footer($setup); ?>