函数参考


_SQLite_Shutdown

卸载 SQLite.dll

#include <SQLite.au3>
_SQLite_Shutdown ( )

参数

None.

返回值

None.

注意/说明

 如果 _SQLite_Startup()失败或不执行,将出现 AutoIt 运行错误,脚本将终止!
 AutoIt 能自动关闭任何打开的 DLL, 但调用 _SQLite_Shutdown 是一个好主意.

相关

_SQLite_Startup

示例/演示


#include <SQLite.au3>
#include <SQLite.dll.au3>
_SQLite_Startup()
If @error Then
    MsgBox(16, "SQLite Error", "SQLite3.dll Can't be Loaded!")
    Exit -1
EndIf
ConsoleWrite("_SQLite_LibVersion=" & _SQLite_LibVersion() & @CRLF)
_SQLite_Shutdown()