Apzo Posted January 9, 2017 Share Posted January 9, 2017 Hello I tried to make working my old scripts on a new W10 system. Something got wrong with all the sqlite3 scripts: SQLite3.dll cannot be found. The given examples in AU3 help don't work. Gosh ! I tried to download the official dll from sqlite, register it and it doesn't work either. register32.exe leads to an error while regitering the official DLL. The AU3 wiki didn't helped.https://www.autoitscript.com/wiki/User_Defined_Functions#Databases_and_web_connections Any way to make it working again ? Thanks for any reply. Apzo. All the pop3 functions.Rsync your files on your USB key (or anywhere else) Link to comment Share on other sites More sharing options...
Apzo Posted January 9, 2017 Author Share Posted January 9, 2017 This one worked for me: http://www.sqlite.org/2016/sqlite-dll-win32-x86-3110100.zip should be the good one. Regards, Apzo. tommy1003 1 All the pop3 functions.Rsync your files on your USB key (or anywhere else) Link to comment Share on other sites More sharing options...
tommy1003 Posted April 15, 2020 Share Posted April 15, 2020 (edited) On 1/9/2017 at 8:12 PM, Apzo said: This one worked for me: http://www.sqlite.org/2016/sqlite-dll-win32-x86-3110100.zip should be the good one. Regards, Apzo. Thank you so much. I've been searching this all day. Edited April 15, 2020 by tommy1003 Link to comment Share on other sites More sharing options...
Apzo Posted May 7, 2020 Author Share Posted May 7, 2020 My previous post is incomplete. This is how I could use the sqlite lib : You need to unzip the sqlite3.dll file in your working directory from http://www.sqlite.org/2016/sqlite-dll-win32-x86-3110100.zip In your code : Quote #include <SQLite.au3> #include <SQLite.dll.au3> _SQLite_Startup("sqlite3.dll", false, 1) ; set the dll and tell to use this dll, not from the dll path (see the _SQLite_Startup help) Your code may not run from the AutoIT IDE. Right clic on the .au3 file and compile on x86 format. Your application should work :) All the pop3 functions.Rsync your files on your USB key (or anywhere else) 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