lua-users home
lua-l archive

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


Il Thu, 04 Aug 2016 21:43:57 +0200 "Pavel Drotar" <gmc1@azet.sk> scrisse:

> ...
> so run lua.exe and in interpreter enter this:
> > local sqlite = require("lsqlite3")
> ...

In the interpreter you should use

> sqlite = require("lsqlite3")

without local, otherwise you will not have access to sqlite in the
following commands.

Ciao.
-- 
Nicola