sealed abstract class Execution
Represents result of either update or query. If update, result can be
obtained via count
; otherwise, if query, result can be obtained via
resultSet
.
- See also
- Companion
- object
Value members
Abstract methods
Gets update count.
Gets update count.
- Throws
- NoSuchElementException
if this execution is not result of update
Returns true
if this execution represents result of query;
otherwise, returns false
.
Returns true
if this execution represents result of query;
otherwise, returns false
.
Returns true
if this execution represents result of update;
otherwise, returns false
.
Returns true
if this execution represents result of update;
otherwise, returns false
.