Source of: /manual/en/internals2.pdo.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/internals2.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'internals2.pdo.php',
1 => 'PDO Driver How-To',
),
'up' =>
array (
0 => 'internals2.php',
1 => 'PHP at the Core: A Hacker\'s Guide to the Zend Engine',
),
'prev' =>
array (
0 => 'internals2.streams.php',
1 => 'Working with streams',
),
'next' =>
array (
0 => 'internals2.pdo.prerequisites.php',
1 => 'Prerequisites',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div>
<div class="info">
<h1>PDO Driver How-To</h1>
<h2>Table of Contents</h2><ul class="chunklist chunklist_chapter"><li><a href="internals2.pdo.prerequisites.php">Prerequisites</a></li><li><a href="internals2.pdo.preparation.php">Preparation and Housekeeping</a></li><li><a href="internals2.pdo.implementing.php">Fleshing out your skeleton</a></li><li><a href="internals2.pdo.building.php">Building</a></li><li><a href="internals2.pdo.testing.php">Testing</a></li><li><a href="internals2.pdo.packaging.php">Packaging and distribution</a></li><li><a href="internals2.pdo.pdo-dbh-t.php">pdo_dbh_t definition</a></li><li><a href="internals2.pdo.pdo-stmt-t.php">pdo_stmt_t definition</a></li><li><a href="internals2.pdo.constants.php">Constants</a></li><li><a href="internals2.pdo.error-handling.php">Error handling</a></li></ul>
<div class="abstract">
<p class="para">
The purpose of this How-To is to provide a basic understanding of the steps
required to write a database driver that interfaces with the PDO layer.
Please note that this is still an evolving API and as such, subject to
change. This document was prepared based on version 0.3 of PDO.
The learning curve is steep; expect to spend a lot of time on the
prerequisites.
</p>
</div>
</div>
</div>
<?php manual_footer(); ?>