class SQLite3::Statement

def close

handle. The statement must not be used after being closed.
Closes the statement by finalizing the underlying statement
def close
  must_be_open!
  @closed = true
  @driver.finalize(@handle)
end