Packages

class SqlResult[T] extends AnyRef

Represents the result of an operation on database.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SqlResult
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SqlResult(_asJava: AnyRef)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def asJava: AnyRef
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. def columnsNames(): Buffer[String]

    Get the names of columns in the SqlResult.

    Get the names of columns in the SqlResult. * @return the list of names of columns.

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def next(): SqlResult[T]

    Return the next available result or null, e.g for a simple query that executed multiple queries or for a batch result.

    Return the next available result or null, e.g for a simple query that executed multiple queries or for a batch result. * @return the next available result or null if none is available

  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. def property[V](propertyKind: PropertyKind[V])(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[V]): V

    Get the property with the specified io.vertx.scala.sqlclient.PropertyKind.

    Get the property with the specified io.vertx.scala.sqlclient.PropertyKind. * @param propertyKind the kind of the property

    returns

    the value of the property

  19. def rowCount(): Int

    Get the number of the affected rows in the operation to this SqlResult.

    Get the number of the affected rows in the operation to this SqlResult. * @return the count of affected rows.

  20. def size(): Int

    Get the number of rows retrieved in the SqlResult.

    Get the number of rows retrieved in the SqlResult. * @return the count of rows.

  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. def value(): T

    Get the result value.

    Get the result value. * @return the result

  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped