作者rockpower ()
看板EzHotKey
标题[-AI-] SQLite 与 utf-8 中文的问题
时间Sat Jan 24 19:05:42 2009
我要使用 AutoIt 去连一个已经存有 utf-8 中文的 sqlite 资料库
但我怎麽试,AutoIt 读出来的中文讯息就是不对
我不大确定 AutoIt 现在对中文的支援到什麽程度
希望有人有经验的可以帮忙一下,非常感谢
下面附上我用来连资料库的 code
#include <SQLite.au3>
#include <SQLite.dll.au3>
Local $hQuery, $aRow, $path
$path = @ScriptDir & "\tmp.sqlite"
_SQLite_Startup ()
_SQLite_Open ($path)
_SQLite_Exec (-1, "PRAGMA encoding = 'UTF-8';")
_SQlite_Query (-1, "SELECT * FROM data;", $hQuery)
While _SQLite_FetchData ($hQuery, $aRow) = $SQLITE_OK
$aRow[1] = BinaryToString($aRow[1], 4)
ConsoleWrite($aRow[0] & " | " & $aRow[1] & @CRLF)
WEnd
_SQLite_Close()
_SQLite_Shutdown()
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 59.115.182.164