Function Reference


_SQLite_LibVersion

Returns the version number of the library

#include <SQLite.au3>
_SQLite_LibVersion ( )

Return Value

Success: the SQLite version string.
Failure: sets the @error flag to non-zero.

Remarks

Requires SQLite3.dll in Current or System directory.

Example

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

Local $sSQliteDll
$sSQliteDll = _SQLite_Startup()
If @error Then
        MsgBox($MB_SYSTEMMODAL, "SQLite Error", "SQLite3.dll Can't be Loaded!")
        Exit -1
EndIf
MsgBox($MB_SYSTEMMODAL, "SQLite3.dll Loaded", $sSQliteDll)
ConsoleWrite("_SQLite_LibVersion=" & _SQLite_LibVersion() & @CRLF)
_SQLite_Shutdown()