mirror of
https://github.com/macintoshplus/doc-en.git
synced 2026-04-26 10:08:02 +02:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user