SQLite.dllをロードします。
#include <SQLite.au3>
_SQLite_Startup ( [ $sDll_Filename = "sqlite3.dll" [, $bUTF8ErrorMsg = False ]] )
パラメータ
$sDll_Filename | [オプション]Dllファイル名 |
$bUTF8ErrorMsg | [オプション]ConsoleWriteによるUTF8文字での表示 |
返し値
成功: | SQLite3.dllのパスを返します。 |
失敗: | @error = 1 |
注意
@ScriptDirまたは@SystemDir内にSQLite3.dllが必要です。
関連
_SQLite_Shutdown
例
#include <SQLite.au3>
#include <SQLite.dll.au3>
Local $sSQliteDll
$sSQliteDll = _SQLite_Startup ()
If @error Then
MsgBox(16, "SQLite Error", "SQLite.dll Can't be Loaded!")
Exit - 1
EndIf
ConsoleWrite("_SQLite_LibVersion=" &_SQLite_LibVersion() & @CRLF)
MsgBox(0,"SQLite3.dll Loaded",$sSQliteDll)
_SQLite_Shutdown ()