[squeak-dev] Re: Using SQLite3 package

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[squeak-dev] Re: Using SQLite3 package

iansimpson
I had a similar problem. What I did was place the sqlite.dll in the
same directory as the .image file and changed
SqliteLibrary>>moduleName to return the correct library file name:

SqliteLibrary>>moduleName
        ^ 'sqlite3.dll'.

Hope this helps