slick.jdbc

PositionedParameters

class PositionedParameters extends AnyRef

A wrapper for a JDBC PreparedStatement which allows inceremental setting of parameters without having to sepcify the column index each time.

Source
PositionedParameters.scala
Linear Supertypes
AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PositionedParameters
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PositionedParameters(ps: PreparedStatement)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (PositionedParameters, B)

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to ArrowAssoc[PositionedParameters] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. def >>[T](value: T)(implicit f: SetParameter[T]): Unit

    Set the next parameter of the specified type, provided that a SetParameter instance is available for it.

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def ensuring(cond: (PositionedParameters) ⇒ Boolean, msg: ⇒ Any): PositionedParameters

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to Ensuring[PositionedParameters] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (PositionedParameters) ⇒ Boolean): PositionedParameters

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to Ensuring[PositionedParameters] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): PositionedParameters

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to Ensuring[PositionedParameters] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): PositionedParameters

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to Ensuring[PositionedParameters] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. var pos: Int

  26. val ps: PreparedStatement

  27. def setBigDecimal(value: BigDecimal): Unit

    Set the next parameter

  28. def setBigDecimalOption(value: Option[BigDecimal]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  29. def setBlob(value: Blob): Unit

    Set the next parameter

  30. def setBlobOption(value: Option[Blob]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  31. def setBoolean(value: Boolean): Unit

    Set the next parameter

  32. def setBooleanOption(value: Option[Boolean]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  33. def setByte(value: Byte): Unit

    Set the next parameter

  34. def setByteOption(value: Option[Byte]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  35. def setBytes(value: Array[Byte]): Unit

    Set the next parameter

  36. def setBytesOption(value: Option[Array[Byte]]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  37. def setClob(value: Clob): Unit

    Set the next parameter

  38. def setClobOption(value: Option[Clob]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  39. def setDate(value: Date): Unit

    Set the next parameter

  40. def setDateOption(value: Option[Date]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  41. def setDouble(value: Double): Unit

    Set the next parameter

  42. def setDoubleOption(value: Option[Double]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  43. def setFloat(value: Float): Unit

    Set the next parameter

  44. def setFloatOption(value: Option[Float]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  45. def setInt(value: Int): Unit

    Set the next parameter

  46. def setIntOption(value: Option[Int]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  47. def setLong(value: Long): Unit

    Set the next parameter

  48. def setLongOption(value: Option[Long]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  49. def setNull(sqlType: Int): Unit

    Set the next parameter to SQL NULL with the specified SQL type code.

  50. def setObject(value: AnyRef, sqlType: Int): Unit

    Set the next parameter to an object of a driver-specific type that corresponds to the specified SQL type code.

  51. def setObjectOption(value: Option[AnyRef], sqlType: Int): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  52. def setShort(value: Short): Unit

    Set the next parameter

  53. def setShortOption(value: Option[Short]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  54. def setString(value: String): Unit

    Set the next parameter

  55. def setStringOption(value: Option[String]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  56. def setTime(value: Time): Unit

    Set the next parameter

  57. def setTimeOption(value: Option[Time]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

  58. def setTimestamp(value: Timestamp): Unit

    Set the next parameter

  59. def setTimestampOption(value: Option[Timestamp]): Unit

    Set the next parameter to the specified value or a properly typed SQL NULL

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

    Definition Classes
    AnyRef
  61. def toString(): String

    Definition Classes
    AnyRef → Any
  62. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  65. def [B](y: B): (PositionedParameters, B)

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to ArrowAssoc[PositionedParameters] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (positionedParameters: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (positionedParameters: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: PositionedParameters

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to ArrowAssoc[PositionedParameters] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (positionedParameters: ArrowAssoc[PositionedParameters]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: PositionedParameters

    Implicit information
    This member is added by an implicit conversion from PositionedParameters to Ensuring[PositionedParameters] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (positionedParameters: Ensuring[PositionedParameters]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from PositionedParameters to StringAdd

Inherited by implicit conversion any2stringfmt from PositionedParameters to StringFormat

Inherited by implicit conversion any2ArrowAssoc from PositionedParameters to ArrowAssoc[PositionedParameters]

Inherited by implicit conversion any2Ensuring from PositionedParameters to Ensuring[PositionedParameters]

Ungrouped