lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


It turns out that lua -lsqlite3 cannot work because the entry point is:

ls_sqlite3.c:LUASQL_API int luaopen_luasql_sqlite3(lua_State *L)

So, try lua -l luasql.sqlite3. Make sure that the Lua sqlite3.so is inside
a directory named luasql somewhere in the path. Or install luasql properly.

lua -l luasql.sqlite3 worked for me.