Class/Object

scalikejdbc

StatementExecutor

Related Docs: object StatementExecutor | package scalikejdbc

Permalink

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 UnixTimeInMillisConverterImplicits 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, Serializable, Product, Equals, AutoCloseable, UnixTimeInMillisConverterImplicits, LogSupport, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StatementExecutor
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AutoCloseable
  7. UnixTimeInMillisConverterImplicits
  8. LogSupport
  9. AnyRef
  10. 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)

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addBatch(): Unit

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def bindParams(params: Seq[Any]): Unit

    Permalink

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

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

    params

    parameters

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def close(): Unit

    Permalink
    Definition Classes
    StatementExecutor → AutoCloseable
  9. val connectionAttributes: DBConnectionAttributes

    Permalink
  10. implicit def convertJavaSqlDateToConverter(t: Date): UnixTimeInMillisConverter

    Permalink
  11. implicit def convertJavaSqlTimeToConverter(t: Time): UnixTimeInMillisConverter

    Permalink
  12. implicit def convertJavaSqlTimestampToConverter(t: Timestamp): UnixTimeInMillisConverter

    Permalink
  13. implicit def convertJavaUtilDateToConverter(t: Date): UnixTimeInMillisConverter

    Permalink
  14. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. def execute(x1: String, x2: Int): Boolean

    Permalink
  16. def execute(x1: String, x2: Array[String]): Boolean

    Permalink
  17. def execute(x1: String, x2: Array[Int]): Boolean

    Permalink
  18. def execute(x1: String): Boolean

    Permalink
  19. def execute(): Boolean

    Permalink
  20. def executeBatch(): Array[Int]

    Permalink
  21. def executeLargeBatch(): Array[Long]

    Permalink
  22. def executeLargeUpdate(sql: String, autoGeneratedKeys: Int): Long

    Permalink
  23. def executeLargeUpdate(sql: String, columnNames: Array[String]): Long

    Permalink
  24. def executeLargeUpdate(sql: String, columnIndexes: Array[Int]): Long

    Permalink
  25. def executeLargeUpdate(sql: String): Long

    Permalink
  26. def executeLargeUpdate(): Long

    Permalink
  27. def executeQuery(x1: String): ResultSet

    Permalink
  28. def executeQuery(): ResultSet

    Permalink
  29. def executeUpdate(x1: String, x2: Int): Int

    Permalink
  30. def executeUpdate(x1: String, x2: Array[String]): Int

    Permalink
  31. def executeUpdate(x1: String, x2: Array[Int]): Int

    Permalink
  32. def executeUpdate(x1: String): Int

    Permalink
  33. def executeUpdate(): Int

    Permalink
  34. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  35. def generatedKeysResultSet: ResultSet

    Permalink
  36. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  37. val isBatch: Boolean

    Permalink

    is batch flag

  38. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  39. val log: Log

    Permalink

    Logger

    Logger

    Attributes
    protected
    Definition Classes
    LogSupport
  40. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  41. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  42. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  43. val settingsProvider: SettingsProvider

    Permalink
  44. val singleParams: Seq[Any]

    Permalink

    parameters for single execution (= not batch execution)

  45. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  46. val tags: Seq[String]

    Permalink
  47. val template: String

    Permalink

    SQL template

  48. val underlying: PreparedStatement

    Permalink

    preparedStatement

  49. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AutoCloseable

Inherited from LogSupport

Inherited from AnyRef

Inherited from Any

Ungrouped