require "luasql.sqlite3" -- direct from luasql/sqlite3.dll
-- from the example in http://www.keplerproject.org/luasql/examples.html
env = assert (luasql.sqlite3())
con = assert (env:connect("../data/database.sqlite"))
-- ... // Drop table, Create table.. Insert data.. all work fine
-- obtain a cursor
cur = con:execute[[ SELECT * from people ]] -- then it explodes here (An access violation, I believe)
I have indeed managed to compile luasql from HEAD using Lua 5.1 and the SQLite3 driver on Windows (using MinGW... it wasn´t a lot of fun..) and I have come to a problem using the conn:execute to return a simple cursor..Could you send a piece of code that reproduces the problem? Tomás