Source of: /manual/en/ref.pdo-sqlite.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/pdo.drivers.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'ref.pdo-sqlite.php',
1 => 'SQLite (PDO)',
),
'up' =>
array (
0 => 'pdo.drivers.php',
1 => 'PDO Drivers',
),
'prev' =>
array (
0 => 'function.pdo-pgsqllobunlink.php',
1 => 'PDO::pgsqlLOBUnlink',
),
'next' =>
array (
0 => 'ref.pdo-sqlite.connection.php',
1 => 'PDO_SQLITE DSN',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div>
<h1 class="title">SQLite Functions (PDO_SQLITE)</h1>
<div class="partintro">
<div id="pdo-sqlite.intro" class="section">
<h2 class="title">Introduction</h2>
<p class="para">
PDO_SQLITE is a driver that implements the <a href="intro.pdo.php" class="link">PHP
Data Objects (PDO) interface</a> to enable access to SQLite 3 databases.
</p>
<p class="para">
In PHP 5.1, the <a href="ref.sqlite.php" class="link">SQLite</a> extension also
provides a driver for SQLite 2 databases; while it is not technically a
part of the PDO_SQLITE driver, it behaves similarly, so it is
documented alongside it. The SQLite 2 driver for PDO is provided
primarily to make it easier to import legacy SQLite 2 database files into
an application that uses the faster, more efficient SQLite 3 driver. As
a result, the SQLite 2 driver is not as feature-rich as the SQLite 3
driver.
</p>
<blockquote><p><b class="note">Note</b>:
PDO_SQLITE allows using strings apart from streams together with
<b><tt class="constant">PDO::PARAM_LOB</tt></b>.
<br />
</p></blockquote>
</div>
</div>
<h2>Table of Contents</h2><ul class="chunklist chunklist_reference"><li><a href="ref.pdo-sqlite.connection.php">PDO_SQLITE DSN</a> — Connecting to SQLite databases</li><li><a href="function.pdo-sqlitecreateaggregate.php">PDO::sqliteCreateAggregate</a> — Registers an aggregating User Defined Function for use in SQL statements</li><li><a href="function.pdo-sqlitecreatefunction.php">PDO::sqliteCreateFunction</a> — Registers a User Defined Function for use in SQL statements</li></ul>
</div>
<?php manual_footer(); ?>