Packages

class PreparedQuery[T] extends Query[T]

A query for a prepared statement allowing parameterized execution of the query, this query will use a prepared statement.

Linear Supertypes
Query[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PreparedQuery
  2. Query
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PreparedQuery(_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
    Definition Classes
    Query
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def execute(tuple: Tuple, handler: Handler[AsyncResult[T]]): Unit

    Execute the query.

    Execute the query. * @param handler the handler receiving the response

  10. def execute(handler: Handler[AsyncResult[T]]): Unit

    Execute the query.

    Execute the query. * @param handler the handler receiving the response

    Definition Classes
    PreparedQueryQuery
  11. def executeBatch(batch: Buffer[Tuple], handler: Handler[AsyncResult[T]]): Unit

    Execute the query with a batch of tuples.

    Execute the query with a batch of tuples. * @param batch the batch of tuples

    handler

    the handler receiving the response

  12. def executeBatchFuture(batch: Buffer[Tuple]): Future[T]

    Like executeBatch but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.

  13. def executeFuture(tuple: Tuple): Future[T]

    Like execute but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.

  14. def executeFuture(): Future[T]

    Like execute but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.

    Like execute but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.

    Definition Classes
    PreparedQueryQuery
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def mapping[U](mapper: (Row) ⇒ U)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[U]): PreparedQuery[RowSet[U]]

    Use the specified mapper for mapping io.vertx.scala.sqlclient.Row to <U>.

    Use the specified mapper for mapping io.vertx.scala.sqlclient.Row to <U>.

    Definition Classes
    PreparedQueryQuery
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Query[T]

Inherited from AnyRef

Inherited from Any

Ungrouped