wez             Sat Sep 10 12:45:53 2005 EDT

  Modified files:              
    /phpdoc/en/reference/pdo_sqlite     reference.xml 
    /phpdoc/en/reference/pdo_sqlite/functions   
                                                PDO-sqliteCreateAggregate.xml 
                                                PDO-sqliteCreateFunction.xml 
  Log:
  these aren't present for the sqlite2 driver.
  
  
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo_sqlite/reference.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/pdo_sqlite/reference.xml
diff -u phpdoc/en/reference/pdo_sqlite/reference.xml:1.6 
phpdoc/en/reference/pdo_sqlite/reference.xml:1.7
--- phpdoc/en/reference/pdo_sqlite/reference.xml:1.6    Sat Sep 10 11:44:37 2005
+++ phpdoc/en/reference/pdo_sqlite/reference.xml        Sat Sep 10 12:45:51 2005
@@ -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>
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateAggregate.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateAggregate.xml
diff -u 
phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateAggregate.xml:1.3 
phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateAggregate.xml:1.4
--- phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateAggregate.xml:1.3  
Fri Sep  9 12:50:02 2005
+++ phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateAggregate.xml      
Sat Sep 10 12:45:52 2005
@@ -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 @@
     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 @@
   <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>
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateFunction.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateFunction.xml
diff -u 
phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateFunction.xml:1.3 
phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateFunction.xml:1.4
--- phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateFunction.xml:1.3   
Fri Sep  9 12:50:02 2005
+++ phpdoc/en/reference/pdo_sqlite/functions/PDO-sqliteCreateFunction.xml       
Sat Sep 10 12:45:53 2005
@@ -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 @@
     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>

Reply via email to