stmt:bind(valuelist)
Bind values to the bind parameters of a prepared statement.
Example
db=sqlite.open('testdb')
stmt,err=db:prepare('select count(*) from foo where x between ? and ?')
stmt:bind(100,200)