EmaBepi Posted September 30, 2016 Share Posted September 30, 2016 IT: ciao, come faccio ad usare Sqlite.dll? ENG: hi, how I can use Sqlite.dll? Link to comment Share on other sites More sharing options...
Moderators JLogan3o13 Posted September 30, 2016 Moderators Share Posted September 30, 2016 @EmaBepi you have to provide more information than that. The help file has a number of examples on "using" SQLite. What, exactly are you trying to do, and what problems are you running into? "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum! Link to comment Share on other sites More sharing options...
EmaBepi Posted September 30, 2016 Author Share Posted September 30, 2016 <div id="inner-editor"></div> hi, I have the SQLite.dll files, but do not know where to put it to perform the function call, so do not know what path to go. Link to comment Share on other sites More sharing options...
jchd Posted September 30, 2016 Share Posted September 30, 2016 Your code should be like this: #include <sqlite.au3> ; do NOT use #include <sqlite.dll.au3> _SQLite_Startup("put_here_the_full_path_to\sqlite3.dll") If @error Then Exit MsgBox(17, 'Startup Error', '@ERROR = ' & @error & @CRLF & '@EXTENDED = ' & @extended) Local $hDB = _SQLite_Open() ; for a memory DB or _SQLite_Open("myDB.sq3") for a disk-based DB If @error Then Exit MsgBox(17, 'DB open failed', '@ERROR = ' & @error & @CRLF & '@EXTENDED = ' & @extended) ; your actual code where you use the DB _SQLite_Close($hDB) _SQLite_Shutdown() If you have a specific use case or have any question about SQLite, just ask. EmaBepi 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...
EmaBepi Posted October 1, 2016 Author Share Posted October 1, 2016 Thank you so much! now I try it... Link to comment Share on other sites More sharing options...
EmaBepi Posted October 1, 2016 Author Share Posted October 1, 2016 it works, thanks again! perhaps it was not enough to put the "#include <sqlite.dll.au3>"... but now my program works, Thank you so much! Link to comment Share on other sites More sharing options...
jchd Posted October 1, 2016 Share Posted October 1, 2016 Good. Should you have any question about SQLite possibilities, design and DB schema, extensions, general SQLite use, don't hesitate to chime. 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...
TheDcoder Posted October 1, 2016 Share Posted October 1, 2016 8 hours ago, EmaBepi said: Thank you so much! now I try it... 23 hours ago, EmaBepi said: <div id="inner-editor"></div> hi, I have the SQLite.dll files, but do not know where to put it to perform the function call, so do not know what path to go. Can you please tell me how you made that kind of boxes? EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time) DcodingTheWeb Forum - Follow for updates and Join for discussion Link to comment Share on other sites More sharing options...
EmaBepi Posted October 1, 2016 Author Share Posted October 1, 2016 since I use google translator, some times in the copy of the text in English it also takes the html code that contains the translation in the box TheDcoder 1 Link to comment Share on other sites More sharing options...
TheDcoder Posted October 2, 2016 Share Posted October 2, 2016 I understand now... EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time) DcodingTheWeb Forum - Follow for updates and Join for discussion 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