<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.pdo.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'intro.pdo.php',
    1 => 'Вступ',
    2 => 'Вступ',
  ),
  'up' => 
  array (
    0 => 'book.pdo.php',
    1 => 'PDO',
  ),
  'prev' => 
  array (
    0 => 'book.pdo.php',
    1 => 'PDO',
  ),
  'next' => 
  array (
    0 => 'pdo.setup.php',
    1 => 'Встановлення/налаштування',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/pdo/book.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intro.pdo" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="para">
   The <code class="literal">PHP Data Objects</code> (<abbr title="PHP Data Objects">PDO</abbr>) extension defines a lightweight, consistent interface
   for accessing databases in PHP. Each database driver that
   implements the PDO interface can expose database-specific
   features as regular extension functions. Note that you cannot
   perform any database functions using the PDO extension by
   itself; you must use a <a href="pdo.drivers.php" class="link">database-specific
   PDO driver</a> to access a database server.
  </p>
  <p class="para">
   PDO provides a <em>data-access</em> abstraction layer, which
   means that, regardless of which database you&#039;re using, you use the same
   functions to issue queries and fetch data.  PDO does
   <em>not</em> provide a <em>database</em>
   abstraction; it doesn&#039;t rewrite SQL or emulate missing features.  You
   should use a full-blown abstraction layer if you need that facility.
  </p>
  <p class="para">
   PDO ships with PHP.
  </p>
 </div><?php manual_footer($setup); ?>