stmt:exec()
Execute a prepared statement using the currently assigned bind variables.
Example
db=sqlite.open('testdb')
stmt,err=db:prepare[[create table foo (x integer)]]
stmt:exec()