<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<refentry xml:id="function.sqlite-udf-encode-binary" xmlns="http://docbook.org/ns/docbook">
 <refnamediv>
  <refname>sqlite_udf_encode_binary</refname>
  <refpurpose>Encode binary data before returning it from an UDF</refpurpose>
 </refnamediv>

 <refsect1 role="description">
  &reftitle.description;
  <methodsynopsis>
   <type>string</type><methodname>sqlite_udf_encode_binary</methodname>
   <methodparam><type>string</type><parameter>data</parameter></methodparam>
  </methodsynopsis>
  <para>
   <function>sqlite_udf_encode_binary</function> applies a binary encoding
   to the <parameter>data</parameter> so that it can be safely returned from
   queries (since the underlying libsqlite API is not binary safe).
  </para>
  <para>
   If there is a chance that your data might be binary unsafe (e.g.: it
   contains a NUL byte in the middle rather than at the end, or if it has and
   <literal>0x01</literal> byte as the first character) then you must
   call this function to encode the return value from your UDF.
  </para>
  <para>
   PHP does not perform this encode/decode operation automatically as it would
   severely impact performance if it did.
  </para>
  <note>
   <para>
    Do not use <function>sqlite_escape_string</function> to quote strings
    returned from UDF's as it will lead to double-quoting of the data.  Use
    <function>sqlite_udf_encode_binary</function> instead!
   </para>
  </note>
 </refsect1>

 <refsect1 role="parameters">
  &reftitle.parameters;
  <para>
   <variablelist>
    <varlistentry>
     <term><parameter>data</parameter></term>
     <listitem>
      <para>
       The <type>string</type> being encoded.
      </para>
     </listitem>
    </varlistentry>
   </variablelist>
  </para>
 </refsect1>
 
 <refsect1 role="returnvalues">
  &reftitle.returnvalues;
  <para>
   The encoded <type>string</type>.
  </para>
 </refsect1>

 <refsect1 role="seealso">
  &reftitle.seealso;
  <para>
   <simplelist>
    <member><function>sqlite_udf_decode_binary</function></member>
    <member><function>sqlite_escape_string</function></member>
    <member><function>sqlite_create_function</function></member>
    <member><function>sqlite_create_aggregate</function></member>
   </simplelist>
  </para>
 </refsect1>
</refentry>

<!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml
 sgml-omittag:t
 sgml-shorttag:t
 sgml-minimize-attributes:nil
 sgml-always-quote-attributes:t
 sgml-indent-step:1
 sgml-indent-data:t
 sgml-parent-document:nil
 sgml-default-dtd-file:"../../manual.ced"
 sgml-exposed-tags:nil
 sgml-local-catalogs:nil
 sgml-local-ecat-files:nil
 End:
 vim600: syn=xml fen fdm=syntax fdl=2 si
 vim: et tw=78 syn=sgml
 vi: ts=1 sw=1
 -->