these aren't present for the sqlite2 driver.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@195722 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Wez Furlong 2005-09-10 16:45:53 +00:00
parent 43652dbc98
commit 35eb4cdf6d
3 changed files with 27 additions and 6 deletions

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<refentry id="function.PDO-sqliteCreateAggregate">
<refnamediv>
<refname>PDO::sqliteCreateAggregate</refname>
@ -163,6 +163,13 @@ var_dump($db->query('SELECT max_len(a) from strings')->fetchAll());
SQL functions.
</para>
</tip>
<note>
<para>
This method is not available with the SQLite2 driver.
Use the old style sqlite API for that instead.
</para>
</note>
</refsect1>
@ -171,6 +178,8 @@ var_dump($db->query('SELECT max_len(a) from strings')->fetchAll());
<para>
<simplelist>
<member><function>PDO::sqliteCreateFunction</function></member>
<member><function>sqlite_create_function</function></member>
<member><function>sqlite_create_aggregate</function></member>
</simplelist>
</para>
</refsect1>

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<refentry id="function.PDO-sqliteCreateFunction">
<refnamediv>
<refname>PDO::sqliteCreateFunction</refname>
@ -132,13 +132,21 @@ $rows = $db->query("SELECT php('md5', filename) from files")->fetchAll();
SQL functions.
</para>
</tip>
<note>
<para>
This method is not available with the SQLite2 driver.
Use the old style sqlite API for that instead.
</para>
</note>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>PDO::sqliteCreateAggregate</function></member>
<member><function>PDO::sqliteCreateAggregate</function></member>
<member><function>sqlite_create_function</function></member>
<member><function>sqlite_create_aggregate</function></member>
</simplelist>
</para>
</refsect1>

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<!-- Purpose: database.vendors -->
<!-- Membership: bundled, pecl -->
@ -18,8 +18,12 @@
<para>
In PHP 5.1, the <link linkend="ref.sqlite">SQLite</link> extension also
provides a driver for SQLite 2 databases; while it is not technically a
part of the PDO_SQLITE driver, it behaves very similarly, so it is
documented alongside it.
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.
</para>
</section>
</partintro>