函数参考


_SQLite_FastEncode

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

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

参数

$vData Data To be encoded (Binary only)

返回值

Success: Returns encoded binary string
Failure: Returns empty string and sets @error
@error: 1 - Data is not a binary type

注意/说明

The encoded string is already wrapped with single quotes.
For example Binary(chr(0) & chr(1)) 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 _SQLite_Escape()
For numeric value to be stored as such, use simple concatenation

相关

_SQLite_Escape

示例/演示


#include <SQLite.au3>
#include <SQLite.dll.au3>

Local $hFile, $vData, $sFileName, $sData, $hQuery, $aRow, $sMsg
_SQLite_Startup()
ConsoleWrite("_SQLite_LibVersion=" & _SQLite_LibVersion() & @CRLF)
_SQLite_Open()
_SQLite_Exec(-1, "CREATE TABLE IF NOT EXISTS Test (data blob);")
$vData = Binary("Hello" & Chr(0) & "World"); = 48656C6C6F00576F726C64
$sData = _SQLite_FastEncode($vData)
_SQLite_Exec(-1, "INSERT INTO Test VALUES (" & $sData & ");")
$vData = Binary(Chr(0) & @CRLF); = 000D0A
$sData = _SQLite_FastEncode($vData)
_SQLite_Exec(-1, "INSERT INTO Test VALUES (" & $sData & ");")
$vData = Binary(Chr(0)); = 00
$sData = _SQLite_FastEncode($vData)
_SQLite_Exec(-1, "INSERT INTO Test VALUES ( " & $sData & " );")
_SQLite_Query(-1, "SELECT * FROM Test;", $hQuery)
While _SQLite_FetchData($hQuery, $aRow, 1) = $SQLITE_OK
    $sMsg &= Hex($aRow[0]) & @CR
WEnd
MsgBox(0, "Result", $sMsg)
_SQLite_Close()
_SQLite_Shutdown()