Some corrections and additions in readyness for 1.0 release.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@132738 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Wez Furlong
2003-06-21 13:24:58 +00:00
parent 5ceab02627
commit 6564dbbe4a
8 changed files with 217 additions and 22 deletions
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<refentry id="function.sqlite-create-function">
<refnamediv>
<refname>sqlite_create_function</refname>
@@ -90,7 +90,8 @@ $rows = sqlite_array_query($db, "SELECT php('md5', filename) from files");
For performance reasons, PHP will not automatically encode/decode binary
data passed to and from your UDF's. You need to manually encode/decode
the parameters and return values if you need to process binary data in
this way.
this way. Take a look at <function>sqlite_udf_encode_binary</function>
and <function>sqlite_udf_decode_binary</function> for more details.
</para>
</note>
<tip>
@@ -100,8 +101,15 @@ $rows = sqlite_array_query($db, "SELECT php('md5', filename) from files");
application.
</para>
</tip>
<tip>
<para>
You can use <function>sqlite_create_function</function> and
<function>sqlite_create_aggregate</function> to override SQLite native
SQL functions.
</para>
</tip>
<para>
See also <function>sqlite_register_aggregate</function>.
See also <function>sqlite_create_aggregate</function>.
</para>
</refsect1>
</refentry>