close method

void close()

Close the result set

Implementation

void close() {
  if (!_disposed) {
    // Result set does not own the statement; mark as disposed without closing
    _disposed = true;
  }
}