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;
}
}
Close the result set
void close() {
if (!_disposed) {
// Result set does not own the statement; mark as disposed without closing
_disposed = true;
}
}