DelegateConnection

com.typesafe.slick.testkit.util.DelegateConnection
class DelegateConnection(conn: Connection) extends Connection

A delegating wrapper for java.sql.Connection.

Attributes

Source
DelegateConnection.scala
Graph
Supertypes
trait Connection
trait AutoCloseable
trait Wrapper
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def abort(executor: Executor): Unit

Attributes

Source
DelegateConnection.scala
def clearWarnings(): Unit

Attributes

Source
DelegateConnection.scala
def close(): Unit

Attributes

Source
DelegateConnection.scala
def commit(): Unit

Attributes

Source
DelegateConnection.scala
def createArrayOf(typeName: String, elements: Array[AnyRef]): Array

Attributes

Source
DelegateConnection.scala
def createBlob(): Blob

Attributes

Source
DelegateConnection.scala
def createClob(): Clob

Attributes

Source
DelegateConnection.scala
def createNClob(): NClob

Attributes

Source
DelegateConnection.scala
def createSQLXML(): SQLXML

Attributes

Source
DelegateConnection.scala
def createStatement(): Statement

Attributes

Source
DelegateConnection.scala
def createStatement(resultSetType: Int, resultSetConcurrency: Int): Statement

Attributes

Source
DelegateConnection.scala
def createStatement(resultSetType: Int, resultSetConcurrency: Int, resultSetHoldability: Int): Statement

Attributes

Source
DelegateConnection.scala
def createStruct(typeName: String, attributes: Array[AnyRef]): Struct

Attributes

Source
DelegateConnection.scala
def getAutoCommit: Boolean

Attributes

Source
DelegateConnection.scala
def getCatalog: String

Attributes

Source
DelegateConnection.scala
def getClientInfo(name: String): String

Attributes

Source
DelegateConnection.scala
def getClientInfo: Properties

Attributes

Source
DelegateConnection.scala
def getHoldability: Int

Attributes

Source
DelegateConnection.scala
def getMetaData: DatabaseMetaData

Attributes

Source
DelegateConnection.scala

Attributes

Source
DelegateConnection.scala
def getSchema: String

Attributes

Source
DelegateConnection.scala
def getTypeMap: Map[String, Class[_]]

Attributes

Source
DelegateConnection.scala
def getWarnings: SQLWarning

Attributes

Source
DelegateConnection.scala
def isClosed: Boolean

Attributes

Source
DelegateConnection.scala
def isReadOnly: Boolean

Attributes

Source
DelegateConnection.scala
def isValid(timeout: Int): Boolean

Attributes

Source
DelegateConnection.scala
def isWrapperFor(iface: Class[_]): Boolean

Attributes

Source
DelegateConnection.scala
def nativeSQL(sql: String): String

Attributes

Source
DelegateConnection.scala
def prepareCall(sql: String): CallableStatement

Attributes

Source
DelegateConnection.scala
def prepareCall(sql: String, resultSetType: Int, resultSetConcurrency: Int): CallableStatement

Attributes

Source
DelegateConnection.scala
def prepareCall(sql: String, resultSetType: Int, resultSetConcurrency: Int, resultSetHoldability: Int): CallableStatement

Attributes

Source
DelegateConnection.scala
def prepareStatement(sql: String): PreparedStatement

Attributes

Source
DelegateConnection.scala
def prepareStatement(sql: String, resultSetType: Int, resultSetConcurrency: Int): PreparedStatement

Attributes

Source
DelegateConnection.scala
def prepareStatement(sql: String, resultSetType: Int, resultSetConcurrency: Int, resultSetHoldability: Int): PreparedStatement

Attributes

Source
DelegateConnection.scala
def prepareStatement(sql: String, autoGeneratedKeys: Int): PreparedStatement

Attributes

Source
DelegateConnection.scala
def prepareStatement(sql: String, columnIndexes: Array[Int]): PreparedStatement

Attributes

Source
DelegateConnection.scala
def prepareStatement(sql: String, columnNames: Array[String]): PreparedStatement

Attributes

Source
DelegateConnection.scala
def releaseSavepoint(savepoint: Savepoint): Unit

Attributes

Source
DelegateConnection.scala
def rollback(): Unit

Attributes

Source
DelegateConnection.scala
def rollback(savepoint: Savepoint): Unit

Attributes

Source
DelegateConnection.scala
def setAutoCommit(autoCommit: Boolean): Unit

Attributes

Source
DelegateConnection.scala
def setCatalog(catalog: String): Unit

Attributes

Source
DelegateConnection.scala
def setClientInfo(name: String, value: String): Unit

Attributes

Source
DelegateConnection.scala
def setClientInfo(properties: Properties): Unit

Attributes

Source
DelegateConnection.scala
def setHoldability(holdability: Int): Unit

Attributes

Source
DelegateConnection.scala
def setNetworkTimeout(executor: Executor, milliseconds: Int): Unit

Attributes

Source
DelegateConnection.scala
def setReadOnly(readOnly: Boolean): Unit

Attributes

Source
DelegateConnection.scala
def setSavepoint(): Savepoint

Attributes

Source
DelegateConnection.scala
def setSavepoint(name: String): Savepoint

Attributes

Source
DelegateConnection.scala
def setSchema(schema: String): Unit

Attributes

Source
DelegateConnection.scala
def setTransactionIsolation(level: Int): Unit

Attributes

Source
DelegateConnection.scala
def setTypeMap(map: Map[String, Class[_]]): Unit

Attributes

Source
DelegateConnection.scala
def unwrap[T](iface: Class[T]): T

Attributes

Source
DelegateConnection.scala