luasql nil value

3.1k views Asked by At

I tried to follow the example at http://www.keplerproject.org/luasql/examples.html

Lua 5.2.0  Copyright (C) 1994-2011 Lua.org, PUC-Rio
> require "luasql.postgres"
> env = assert (luasql.postgres())
stdin:1: attempt to index global 'luasql' (a nil value)
stack traceback:
    stdin:1: in main chunk
    [C]: in ?
> 

What am I missing?

1

There are 1 answers

0
losinggeneration On

You could try

luasql = require "luasql.postgres"
env = assert (luasql.postgres())