Re: sqlite3 problem Need some ideas
- Posted by jessedavis May 17, 2021
 - 1189 views
 
Yes, you got it, sort of.  I checked the .dll and it is the correct 32 bit version; however, it jogged my memory.
 windows/system32/sqlite3.dll is correct  but there is a second copy c:/sqlite/sqlite3.dll which is the 64 bit version.  Apparently, euphoria, for some unknown reason, finds the wrong one when it searches the path.
 Here is the operative line from eusqlite3.ew:  SQLITE3_WIN_LIB_VER = "sqlite3.dll"
 I apparently don't understand how c:\windows\system32\sqlite3.dll and c:\sqlite\sqlite3.dll fits in to all this.
 I tried hard coding the complete path to system32\sqlite3.dll.  Appparently you are not allowed to do this.
 I can make it work simply by putting the 32 bit version in c:\sqlite\.
 I guess I'll find out someday who needs the 64 bit version that was in the c:\sqlite\ directory..
 
 thanks for the help
regards,
jd
		
