###User Defined Function###
_SQLite_FastEncode

###Description###
Fast encodes binary data (exclusively) for use in SQLite statements

###Syntax###
#include <SQLite.au3>
_SQLite_FastEncode ( $vData )


###Parameters###
@@ParamTable@@
$vData
	Data To be encoded (Binary only)
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	an encoded binary string.
Failure:	an empty string and sets the @error flag to non-zero.
@error:	1 - Data is not a binary type
@@End@@


###Remarks###
The encoded string is already wrapped with single quotes.
For example <a href="../functions/Chr.htm">Chr(0)</a> & <a href="../functions/Chr.htm">Chr(1)</a> would look like X'0001'.
The encoded string can be decoded by Sqlite and stored in binary state as a BLOB.
For strings to be stored as TEXT, use <a href="_SQLite_Escape.htm">_SQLite_Escape()</a>.
For numeric value to be stored as such, use simple concatenation.


###Related###
_SQLite_Escape


###Example###
@@IncludeExample@@
