irchtml Wed Jan 12 03:49:39 2005 EDT
Modified files:
/phpdoc/en language-snippets.ent
Log:
SQLite entities for updated docs
http://cvs.php.net/diff.php/phpdoc/en/language-snippets.ent?r1=1.129&r2=1.130&ty=u
Index: phpdoc/en/language-snippets.ent
diff -u phpdoc/en/language-snippets.ent:1.129
phpdoc/en/language-snippets.ent:1.130
--- phpdoc/en/language-snippets.ent:1.129 Mon Jan 3 08:10:18 2005
+++ phpdoc/en/language-snippets.ent Wed Jan 12 03:49:38 2005
@@ -1,4 +1,4 @@
-<!-- $Revision: 1.129 $ -->
+<!-- $Revision: 1.130 $ -->
<!-- Keep 'em sorted -->
@@ -371,6 +371,32 @@
<!ENTITY sqlite.no-unbuffered '<note><para>This function cannot be used with
unbuffered result handles.</para></note>'>
+<!ENTITY sqlite.param-compat '<note><simpara>Two alternative syntaxes are
+supported for compatibility with other database extensions (such as MySQL).
+The preferred form is the first, where the <parameter>dbhandle</parameter>
+parameter is the first parameter to the function.</simpara></note>'>
+
+<!ENTITY sqlite.result-type '<para>The optional
<parameter>result_type</parameter>
+parameter accepts a constant and determines how the returned array will be
+indexed. Using <constant>SQLITE_ASSOC</constant> will return only associative
+indices (named fields) using <constant>SQLITE_NUM</constant> will return
+only numerical indices (ordinal field numbers).
<constant>SQLITE_BOTH</constant>
+will return both associative and numerical indices.
+<constant>SQLITE_BOTH</constant> is the default for this function.</para>'>
+
+<!ENTITY sqlite.case-fold '<para>The column names returned by
+<constant>SQLITE_ASSOC</constant> and <constant>SQLITE_BOTH</constant> will be
+case-folded according to the value of the
+<link linkend="ini.sqlite.assoc-case">sqlite.assoc_case</link> configuration
+option.</para>'>
+
+<!ENTITY sqlite.decode-bin '<para>When the <parameter>decode_binary</parameter>
+parameter is set to &true; (the default), PHP will decode the binary encoding
+it applied to the data if it was encoded using the
+<function>sqlite_escape_string</function>. You should normally leave this
+value at its default, unless you are interoperating with databases created by
+other sqlite capable applications.</para>'>
+
<!-- Database Notes -->
<!ENTITY database.field-case '<note><simpara>Field names returned by this
function
are <emphasis>case-sensitive</emphasis>.</simpara></note>'>