Packages

case class StatementExecutor(underlying: PreparedStatement, template: String, connectionAttributes: DBConnectionAttributes, singleParams: Seq[Any] = Nil, tags: Seq[String] = Nil, isBatch: Boolean = false, settingsProvider: SettingsProvider = SettingsProvider.default) extends LogSupport with AutoCloseable with Product with Serializable

java.sql.Statement Executor.

underlying

preparedStatement

template

SQL template

singleParams

parameters for single execution (= not batch execution)

isBatch

is batch flag

Source
StatementExecutor.scala
Linear Supertypes
Serializable, Product, Equals, AutoCloseable, LogSupport, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StatementExecutor
  2. Serializable
  3. Product
  4. Equals
  5. AutoCloseable
  6. LogSupport
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StatementExecutor(underlying: PreparedStatement, template: String, connectionAttributes: DBConnectionAttributes, singleParams: Seq[Any] = Nil, tags: Seq[String] = Nil, isBatch: Boolean = false, settingsProvider: SettingsProvider = SettingsProvider.default)

    underlying

    preparedStatement

    template

    SQL template

    singleParams

    parameters for single execution (= not batch execution)

    isBatch

    is batch flag

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. def addBatch(): Unit
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def bindParams(params: Seq[Any]): Unit

    Binds parameters to the underlying java.sql.PreparedStatement object.

    Binds parameters to the underlying java.sql.PreparedStatement object.

    params

    parameters

  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def close(): Unit
    Definition Classes
    StatementExecutor → AutoCloseable
  9. val connectionAttributes: DBConnectionAttributes
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def execute(x1: String, x2: Int): Boolean
  12. def execute(x1: String, x2: Array[String]): Boolean
  13. def execute(x1: String, x2: Array[Int]): Boolean
  14. def execute(x1: String): Boolean
  15. def execute(): Boolean
  16. def executeBatch(): Array[Int]
  17. def executeLargeBatch(): Array[Long]
  18. def executeLargeUpdate(sql: String, autoGeneratedKeys: Int): Long
  19. def executeLargeUpdate(sql: String, columnNames: Array[String]): Long
  20. def executeLargeUpdate(sql: String, columnIndexes: Array[Int]): Long
  21. def executeLargeUpdate(sql: String): Long
  22. def executeLargeUpdate(): Long
  23. def executeQuery(x1: String): ResultSet
  24. def executeQuery(): ResultSet
  25. def executeUpdate(x1: String, x2: Int): Int
  26. def executeUpdate(x1: String, x2: Array[String]): Int
  27. def executeUpdate(x1: String, x2: Array[Int]): Int
  28. def executeUpdate(x1: String): Int
  29. def executeUpdate(): Int
  30. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  31. def generatedKeysResultSet: ResultSet
  32. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  33. val isBatch: Boolean
  34. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  35. val log: Log

    Logger

    Logger

    Attributes
    protected
    Definition Classes
    LogSupport
  36. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  37. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. def productElementNames: Iterator[String]
    Definition Classes
    Product
  40. val settingsProvider: SettingsProvider
  41. val singleParams: Seq[Any]
  42. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  43. val tags: Seq[String]
  44. val template: String
  45. val underlying: PreparedStatement
  46. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  47. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  48. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AutoCloseable

Inherited from LogSupport

Inherited from AnyRef

Inherited from Any

Ungrouped