SQLite/DBInterface confusion

You could try:

dump(SQLite.execute(db,"select * from Test1"))

That will show you the object. My guess is they implemented a show method for whatever that method returns…and it’s not showing much. Again looking at the code maybe try:

a = SQLite.execute(db,"select * from Test1")
getvalue(a, 1, Int)

Not sure if getvalue() should be prefixed with SQLite.

1 Like