class SQLite3::ResultSet

def close

close any other result sets that were spawned from the same statement.
Use with caution! Closing a result set will automatically
Closes the statement that spawned this result set.
def close
  @stmt.close
end