QueryResult

class QueryResult(val rowsAffected: Long, val statusMessage: String, val rows: Option[ResultSet])

This is the result of the execution of a statement, contains basic information as the number or rows affected by the statement and the rows returned if there were any.

class Object
trait Matchable
class Any

Value members

Concrete methods

override
def toString: String
Definition Classes
Any

Concrete fields

val rows: Option[ResultSet]
val rowsAffected: Long
val statusMessage: String