Jump to content

Problem setting the environment for SQLite database


Recommended Posts

Good morning guys :)
I was trying to use again SQLite in AutoIt, and I've again an issue: I can't startup SQLite...
Can you please show me the way to set the enviornment for a SQLIte usage in AutoIt? Step by step, I'll follow your suggestion(s).

Thanks for everyone will reply!

Francesco :)

Click here to see my signature:

Spoiler

ALWAYS GOOD TO READ:

 

Link to comment
Share on other sites

Don't #include <SQLite.Dll.au3> but instead download the SQLite DLL suitable for your architecture and place it simply in the script directory.

Use _SQLite_Startup($path_of_dll)

No environment setup/variable is needed.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

@jchd

Thanks for your reply :)
I did something like this ( in order to have an application compatible with both x32 and x64 OS Arch... ) :
 

Global $sSQLite_DLL = ""

; Check for Windows Architecture

MsgBox($MB_ICONINFORMATION, "OS Arch:", @OSArch)

If(@OSArch = "X86") Then
    $sSQLite_DLL = @ScriptDir & "\sqlite3_x32.dll"
ElseIf(@OSArch = "X64") Then
    $sSQLite_DLL = @ScriptDir & "\sqlite3_x64.dll"
EndIf
MsgBox($MB_ICONINFORMATION, "DLL to load:", $sSQLite_DLL)

_SQLite_Startup($sSQLite_DLL)
If @error Then
    MsgBox($MB_ICONERROR, "Changes Detector:", "Error during the startup of SQLite." & @CRLF & "Error: " & @error)
    Exit
EndIf

But I've always the error that I can't do the startup.

Any suggestions?

Thanks :) 

Click here to see my signature:

Spoiler

ALWAYS GOOD TO READ:

 

Link to comment
Share on other sites

Yes, that and always use the dll name w/o "bitness", just _SQLite_Startup("sqlite3.dll"). _SQLite_Startup appends "_X64" to the DLL filename when needed.

This UDF code does this under the hood:

If @AutoItX64 And (StringInStr($sDll_Filename, "_x64") = 0) Then $sDll_Filename = StringReplace($sDll_Filename, ".dll", "_x64.dll")

You can safely remove your test for architecture and streamline your code.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...