Blaxxun Posted April 2, 2016 Share Posted April 2, 2016 (edited) Hello, Maybe i miss something, but me and a friend are getting crazy already. I have this supersimple code which works fine on my machine but NOT on my buddys machine. What can be wrong? The sqlite3.dll is in the same folder as the .au3 file. Also the SQLite.au3 and SQLite.dll.au3 files are in the standard AutoIt folder on the C:\ drive. Here is the code: #include <SQLite.au3> #include <SQLite.dll.au3> _SQLite_Startup() $DB = _SQLite_Open("C:\DB.db") _SQLite_Exec($DB, "CREATE TABLE Test (Row1,Row2);") _SQLite_Close() What the heck is wrong here???? Thanks in advance! PS: We also tryd to add the direct path to the .dll in the _SQLite_Startup() command without success. AND we also tryd plenty of different versions if sqlite3.dll Edited April 2, 2016 by Blaxxun Link to comment Share on other sites More sharing options...
jchd Posted April 3, 2016 Share Posted April 3, 2016 (edited) The dll and the AutoIt script (compiled or not) must use the same format: either both x86 or both x64. Use _SQLite_Startup($path & "\sqlite3.dll") in both cases but the 32-bit dll must be named sqlite3.dll and the 64-bit dll must be named sqlite3_x64.dll, both in the path used (defaulting to script folder). Edited April 3, 2016 by jchd AutoBert 1 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 hereRegExp tutorial: enough to get startedPCRE 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 More sharing options...
Blaxxun Posted April 3, 2016 Author Share Posted April 3, 2016 JESUS!! You're the man!! Thank you! My gosh, how could we miss that. The thing was that we tryd 32 and 64bit versions as well. BUT my SCITE runs on 32bit and my buddys on 64bit from the editor F5 Run. When we started the script from the explorer in 32bit it immediatly worked. Thanks! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now