Execution

little.sql.Execution
See theExecution companion object
sealed abstract class Execution

Represents result of either update or query.

If update, the result is count; otherwise, the execution is a query with resultSet.

Attributes

See also
Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Query
class Update

Members list

Value members

Abstract methods

def count: Long

Gets update count.

Gets update count.

Attributes

Throws
NoSuchElementException

if this execution is not an update

def isQuery: Boolean

Returns true if this execution is a query; otherwise, returns false.

Returns true if this execution is a query; otherwise, returns false.

Attributes

def isUpdate: Boolean

Returns true if this execution is an update; otherwise, returns false.

Returns true if this execution is an update; otherwise, returns false.

Attributes

def resultSet: ResultSet

Gets result set.

Gets result set.

Attributes

Throws
NoSuchElementException

if this execution is not a query