class Sql extends AutoCloseable

Linear Supertypes
AutoCloseable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Sql
  2. AutoCloseable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Sql(connection: Connection)
    Attributes
    protected

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 call(sql: String, params: Seq[Any]): Int
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def close(): Unit
    Definition Classes
    Sql → AutoCloseable
  8. val connection: Connection
  9. def eachRow(rs: ResultSet, offset: Int, maxRows: Int, rowHandler: (ResultSet) ⇒ Any, metaDataHandler: (ResultSetMetaData) ⇒ Any): Unit
  10. def eachRow(sql: String, params: Seq[Any], offset: Int, maxRows: Int, rowHandler: (ResultSet) ⇒ Any, metaDataHandler: (ResultSetMetaData) ⇒ Any = null): Unit
  11. def eachRow(tableName: String, selectFields: Map[String, String], filter: Map[String, Any], rowHandler: (ResultSet) ⇒ Any): Unit
  12. def eachRow(tableName: String, selectFields: Seq[String], filter: Map[String, Any], rowHandler: (ResultSet) ⇒ Any): Unit
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def execute(sql: String, params: Seq[Any]): Boolean
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def firstRow(sql: String, params: Seq[Any]): Map[String, Any]
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def newIn(sqlType: Int, value: Any): InParameter
  23. def newInOut(sqlType: Int, value: Any): InOutParameter
  24. def newOut(sqlType: Int, value: Any): OutParameter
  25. final def notify(): Unit
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  27. def prepareSql(tableName: String, selectFields: Map[String, String], filter: Map[String, Any]): (String, Seq[Any])
  28. def prepareSql(tableName: String, selectFields: Seq[String], filter: Map[String, Any]): (String, Seq[Any])
  29. def prepareStatement(sql: String, params: Seq[Any]): PreparedStatement
  30. def prepareWhere(sb: StringBuilder, filter: Map[String, Any]): Seq[Any]
  31. def rows(sql: String, params: Seq[Any], offset: Int, maxRows: Int, metaDataHandler: (ResultSetMetaData) ⇒ Any = null): Seq[Map[String, Any]]
  32. def setParameterValue(statement: PreparedStatement, i: Int, value: Any): Unit
  33. def setParameters(statement: PreparedStatement, params: Seq[Any]): Unit
  34. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  35. def toSeq(rs: ResultSet, offset: Int, maxRows: Int, metaDataHandler: (ResultSetMetaData) ⇒ Any): Seq[Map[String, Any]]
  36. def toString(): String
    Definition Classes
    AnyRef → Any
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped