Packages

c

lightdb.sql

SQLState

case class SQLState[Doc <: Document[Doc]](connectionManager: ConnectionManager, transaction: Transaction[Doc], store: SQLStore[Doc, _], caching: Boolean) extends TransactionFeature with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, TransactionFeature, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SQLState
  2. Serializable
  3. Product
  4. Equals
  5. TransactionFeature
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SQLState(connectionManager: ConnectionManager, transaction: Transaction[Doc], store: SQLStore[Doc, _], caching: Boolean)

Value Members

  1. val caching: Boolean
  2. def close(): Unit
    Definition Classes
    SQLState → TransactionFeature
  3. def commit(): Unit
    Definition Classes
    SQLState → TransactionFeature
  4. val connectionManager: ConnectionManager
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product
  6. def register(rs: ResultSet): Unit
  7. def register(s: Statement): Unit
  8. def returnPreparedStatement(sql: String, ps: PreparedStatement): Unit
  9. def rollback(): Unit
    Definition Classes
    SQLState → TransactionFeature
  10. val store: SQLStore[Doc, _]
  11. val transaction: Transaction[Doc]
  12. def withInsertPreparedStatement[Return](f: (PreparedStatement) => Return): Return
  13. def withPreparedStatement[Return](sql: String)(f: (PreparedStatement) => Return): Return
  14. def withUpsertPreparedStatement[Return](f: (PreparedStatement) => Return): Return