stmt:first_cols()

Execute a prepared statement using the currently assigned bind variables and return the first row of data as multiple return values.

Example
db=sqlite.open('testdb')
stmt,err=db:prepare[[select max(x), min(x) from foo where x between ? and ?]]
stmt:bind(1,100)
max,min=stmt:first_cols()