Packages

class PsManager extends AnyRef

info is a list of Tuples including the name of the column being substituted and the java.sql.Types typecode associated with the column.

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

Instance Constructors

  1. new PsManager(sql: String, paramNames: List[String], paramTypeCodes: List[Int])
  2. new PsManager(sql: String, paramInfos: List[(String, Int)])
  3. new PsManager(sql: String, info: Vector[(String, Int)])

Value Members

  1. def apply(con: Connection): WrappedPreparedStatement
  2. val indexForName: Map[String, Int]
  3. def nameForIndex(i: Int): String
  4. def nullParameters(ps: PreparedStatement): Unit
  5. val numParameters: Int
  6. def overwriteParameters(ps: PreparedStatement, params: Map[String, Any]): Unit
  7. def paramNames: Vector[String]
  8. def prepareStatement(con: Connection): WrappedPreparedStatement
  9. def setParameter(ps: PreparedStatement, paramName: String, param: Any): Unit
  10. def setParameter(ps: PreparedStatement, i: Int, param: Any): Unit
  11. val sql: String
  12. def tupForIndex(i: Int): (String, Int)
  13. def tupForName(name: String): (String, Int)
  14. def wrap(ps: PreparedStatement): WrappedPreparedStatement