lua-users home
lua-l archive

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


> Thanks for the tip. Lua successfully loads this dummy module, so it
> looks like the issue lies in the LuaSQL + SQLite3 module that I tried
> to compile.

Did you try this other version?

int luaopen_dummy (lua_State *L) {
 puts("Hello from dummy");
 lua_pushnil(L);
 puts("Bye from dummy");
 return 0;
}