8.3.20 getLargeUpdateCount()
- Organization of this subsection
(1) Function
This method returns the number of updated rows as a long value.
If the number of updated rows might exceed Integer.MAX_VALUE, use the getLargeUpdateCount method instead of getUpdateCount. If you use the getUpdateCount method, it will return 0 if the number of updated rows exceeds Integer.MAX_VALUE.
(2) Format
public synchronized long getLargeUpdateCount() throws SQLException
(3) Arguments
None.
(4) Return value
For details about return values, see (4) Return value in 8.3.29 getUpdateCount().
(5) Exceptions
For details about exceptions, see (5) Exceptions in 8.3.29 getUpdateCount().