vrana Sun Sep 19 04:29:07 2004 EDT
Modified files:
/phpdoc/en/reference/sqlite/functions sqlite-create-aggregate.xml
sqlite-create-function.xml
Log:
Be more explicit (thanks Friedhelm)
http://cvs.php.net/diff.php/phpdoc/en/reference/sqlite/functions/sqlite-create-aggregate.xml?r1=1.9&r2=1.10&ty=u
Index: phpdoc/en/reference/sqlite/functions/sqlite-create-aggregate.xml
diff -u phpdoc/en/reference/sqlite/functions/sqlite-create-aggregate.xml:1.9
phpdoc/en/reference/sqlite/functions/sqlite-create-aggregate.xml:1.10
--- phpdoc/en/reference/sqlite/functions/sqlite-create-aggregate.xml:1.9 Sat
Sep 18 16:01:29 2004
+++ phpdoc/en/reference/sqlite/functions/sqlite-create-aggregate.xml Sun Sep 19
04:29:01 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<refentry id="function.sqlite-create-aggregate">
<refnamediv>
<refname>sqlite_create_aggregate</refname>
@@ -30,8 +30,8 @@
Once all the rows have been processed,
<parameter>finalize_func</parameter> will be called and it should then
take the data from the aggregation context and return the result.
- Callback functions should return a type understood by SQLite (not
- <type>array</type> for example).
+ Callback functions should return a type understood by SQLite (i.e.
+ <link linkend="language.types.intro">scalar type</link>).
</para>
<para>
<example>
http://cvs.php.net/diff.php/phpdoc/en/reference/sqlite/functions/sqlite-create-function.xml?r1=1.11&r2=1.12&ty=u
Index: phpdoc/en/reference/sqlite/functions/sqlite-create-function.xml
diff -u phpdoc/en/reference/sqlite/functions/sqlite-create-function.xml:1.11
phpdoc/en/reference/sqlite/functions/sqlite-create-function.xml:1.12
--- phpdoc/en/reference/sqlite/functions/sqlite-create-function.xml:1.11 Sat
Sep 18 16:01:29 2004
+++ phpdoc/en/reference/sqlite/functions/sqlite-create-function.xml Sun Sep 19
04:29:01 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.11 $ -->
+<!-- $Revision: 1.12 $ -->
<refentry id="function.sqlite-create-function">
<refnamediv>
<refname>sqlite_create_function</refname>
@@ -28,8 +28,8 @@
of the function that you will use in your SQL statements,
<parameter>callback</parameter> is any valid PHP callback to specify a
PHP function that should be called to handle the SQL function.
- Callback function should return a type understood by SQLite (not
- <type>array</type> for example).
+ Callback function should return a type understood by SQLite (i.e.
+ <link linkend="language.types.intro">scalar type</link>).
The optional parameter <parameter>num_args</parameter> is used as a hint
by the SQLite expression parser/evaluator. It is recommended that you
specify a value if your function will only ever accept a fixed number of