Releases this SQLServerResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.

public void close()

Exceptions

SQLServerException

Remarks

This close method is specified by the close method in the java.sql.ResultSet interface.

A SQLServerResultSet object is automatically closed by the SQLServerStatement object that generated it when that SQLServerStatement object is closed, re-run, or used to retrieve the next result from a sequence of multiple results. A SQLServerResultSet object is also automatically closed when it is garbage collected.

See Also