A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.playframework.com/documentation/2.5.x/api/scala/anorm/ToStatementPriority1.html below:

ToStatementPriority1 - anorm.ToStatementPriority1

  • final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  • final def ##(): Int
    Definition Classes
    AnyRef → Any
  • final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  • implicit def arrayToParameter[A <: AnyRef](implicit m: ParameterMetaData[A]): ToStatement[Array[A]] with NotNullGuard

    Sets an array parameter on statement.

    Sets an array parameter on statement.

    Definition Classes
    ToStatementPriority0
    See also

    java.sql.Array

    SQL("INSERT INTO Table(arr) VALUES {a}").on("a" -> Array("A", "2", "C"))
  • final def asInstanceOf[T0]: T0
  • implicit def binaryStreamToStatement[S <: InputStream]: ToStatement[S]

    Sets a binary stream as parameter on statement.

    Sets a binary stream as parameter on statement. For null value, setNull with LONGVARBINARY is called on statement.

    SQL("INSERT INTO Table(bin) VALUES {b}").on("b" -> inputStream)
    Definition Classes
    ToStatementPriority0
  • implicit def blobToStatement[B <: Blob]: ToStatement[B]

    Sets a blob as parameter on statement.

    Sets a blob as parameter on statement. For null value, setNull with BLOB is called on statement.

    val blob = con.createBlob()
    blob.setBytes(1, byteArray)
    SQL("INSERT INTO Table(bin) VALUES {b}").on("b" -> blob)
    Definition Classes
    ToStatementPriority0
  • implicit object booleanToStatement extends ToStatement[Boolean]

    Sets boolean value on statement.

    Sets boolean value on statement.

    SQL("SELECT * FROM Test WHERE enabled = {b}").on('b -> true)
    Definition Classes
    ToStatementPriority0
  • implicit object byteArrayToStatement extends ToStatement[Array[Byte]]

    Sets an array of byte as parameter on statement.

    Sets an array of byte as parameter on statement. For null value, setNull with LONGVARBINARY is called on statement.

    SQL("INSERT INTO Table(bin) VALUES {b}").on("b" -> arrayOfBytes)
  • implicit object byteToStatement extends ToStatement[Byte]

    Sets byte value on statement.

    Sets byte value on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").on('b -> 1.toByte)
    Definition Classes
    ToStatementPriority0
  • implicit object charToStatement extends ToStatement[Char]

    Sets character as parameter value.

    Sets character as parameter value.

    SQL("SELECT * FROM tbl WHERE flag = {c}").on("c" -> 'f')
    Definition Classes
    ToStatementPriority0
  • implicit def characterStreamToStatement[R <: Reader]: ToStatement[R]

    Sets a character stream as parameter on statement.

    Sets a character stream as parameter on statement. For null value, setNull with VARCHAR is called on statement.

    SQL("INSERT INTO Table(chars) VALUES {c}").on("c" -> reader)
    Definition Classes
    ToStatementPriority0
  • implicit object characterToStatement extends ToStatement[Character]

    Sets Java Character as parameter value.

    Sets Java Character as parameter value. For null character, setNull with VARCHAR is called on statement.

    SQL("SELECT * FROM tbl WHERE flag = {c}").
      on("c" -> new java.lang.Character('f'))
    Definition Classes
    ToStatementPriority0
  • def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  • implicit object dateToStatement extends ToStatement[Date]

    Sets date as statement parameter.

    Sets date as statement parameter. For null value, setNull with TIMESTAMP is called on statement.

    SQL("UPDATE tbl SET modified = {d}").on('d -> new Date())
    Definition Classes
    ToStatementPriority0
  • implicit object doubleToStatement extends ToStatement[Double]

    Sets double value on statement.

    Sets double value on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").on('b -> 1d)
    Definition Classes
    ToStatementPriority0
  • final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  • def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  • def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  • implicit object floatToStatement extends ToStatement[Float]

    Sets float value on statement.

    Sets float value on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").on('b -> 1f)
    Definition Classes
    ToStatementPriority0
  • final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  • def hashCode(): Int
    Definition Classes
    AnyRef → Any
  • implicit object intToStatement extends ToStatement[Int]

    Sets integer value on statement.

    Sets integer value on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").on('b -> 1)
    Definition Classes
    ToStatementPriority0
  • implicit object integerToStatement extends ToStatement[Integer]

    Sets Java Integer object on statement.

    Sets Java Integer object on statement. For null value, setNull with INTEGER is called on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").
      on('b -> new java.lang.Integer(1))
    Definition Classes
    ToStatementPriority0
  • final def isInstanceOf[T0]: Boolean
  • implicit object javaBigDecimalToStatement extends ToStatement[BigDecimal]

    Sets Java big decimal on statement.

    Sets Java big decimal on statement. Value null is accepted.

    SQL("UPDATE tbl SET max = {m}").on('m -> new java.math.BigDecimal(10.02f))
    Definition Classes
    ToStatementPriority0
  • implicit object javaBigIntegerToStatement extends ToStatement[BigInteger]

    Sets Java big integer on statement.

    Sets Java big integer on statement. For null value, setNull with NUMERIC is called on statement.

    SQL("UPDATE tbl SET max = {m}").on('m -> new BigInteger(15))
    Definition Classes
    ToStatementPriority0
  • implicit object javaBooleanToStatement extends ToStatement[Boolean]

    Sets Java Boolean object on statement.

    Sets Java Boolean object on statement. For null value, setNull with BOOLEAN is called on statement.

    SQL("SELECT * FROM Test WHERE enabled = {b}").
      on('b -> java.lang.Boolean.TRUE)
    Definition Classes
    ToStatementPriority0
  • implicit object javaByteToStatement extends ToStatement[Byte]

    Sets Java Byte object on statement.

    Sets Java Byte object on statement. For null value, setNull with TINYINT is called on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").on('b -> new java.lang.Byte(1))
    Definition Classes
    ToStatementPriority0
  • implicit object javaDoubleToStatement extends ToStatement[Double]

    Sets Java Double object on statement.

    Sets Java Double object on statement. For null value, setNull with DOUBLE is called on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").
      on('b -> new java.lang.Double(1d))
    Definition Classes
    ToStatementPriority0
  • implicit object javaFloatToStatement extends ToStatement[Float]

    Sets Java Float object on statement.

    Sets Java Float object on statement. For null value, setNull with FLOAT is called on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").
      on('b -> new java.lang.Float(1f))
    Definition Classes
    ToStatementPriority0
  • implicit object javaLongToStatement extends ToStatement[Long]

    Sets Java Long object on statement.

    Sets Java Long object on statement. For null value, setNull with BIGINT is called on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").
      on('b -> new java.lang.Long(1l))
    Definition Classes
    ToStatementPriority0
  • implicit object javaShortToStatement extends ToStatement[Short]

    Sets Java Short object on statement.

    Sets Java Short object on statement. For null value, setNull with SMALLINT is called on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").
      on('b -> new java.lang.Short(1.toShort))
    Definition Classes
    ToStatementPriority0
  • implicit def listToStatement[A](implicit c: ToStatement[A]): ToStatement[List[A]]

    Sets multi-value parameter from list on statement.

    Sets multi-value parameter from list on statement.

    SQL("SELECT * FROM Test WHERE cat IN ({categories})").
      on('categories -> List(1, 3, 4)
    Definition Classes
    ToStatementPriority0
  • implicit object longToStatement extends ToStatement[Long]

    Sets long value on statement.

    Sets long value on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").on('b -> 1l)
    Definition Classes
    ToStatementPriority0
  • final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  • final def notify(): Unit
    Definition Classes
    AnyRef
  • final def notifyAll(): Unit
    Definition Classes
    AnyRef
  • implicit object objectToStatement extends ToStatement[Object]

    Sets opaque value as statement parameter.

    Sets opaque value as statement parameter. UNSAFE: It's set using java.sql.PreparedStatement.setObject.

    SQL("EXEC indexed_at {d}").on('d -> anorm.Object(new java.util.Date()))
    Definition Classes
    ToStatementPriority0
  • implicit def optionToStatement[A](implicit c: ToStatement[A], meta: ParameterMetaData[A]): ToStatement[Option[A]] with NotNullGuard

    Sets optional A inferred as Option[A].

    Sets optional A inferred as Option[A].

    SQL("SELECT * FROM Test WHERE category = {c}").on('c -> Option("cat"))
    SQL"SELECT * FROM Test WHERE nullable_int = \${Option.empty[Int]}"
    Definition Classes
    ToStatementPriority0
  • implicit object scalaBigDecimalToStatement extends ToStatement[BigDecimal]

    Sets big decimal on statement.

    Sets big decimal on statement. For null value, setNull with DECIMAL is called on statement.

    SQL("UPDATE tbl SET max = {m}").on('m -> BigDecimal(10.02f))
    Definition Classes
    ToStatementPriority0
  • implicit object scalaBigIntegerToStatement extends ToStatement[BigInt]

    Sets big integer on statement.

    Sets big integer on statement. For null value, setNull with NUMERIC is called on statement.

    SQL("UPDATE tbl SET max = {m}").on('m -> BigInt(15))
    Definition Classes
    ToStatementPriority0
  • implicit def seqParamToStatement[A](implicit c: ToStatement[Seq[A]]): ToStatement[SeqParameter[A]] with NotNullGuard

    Sets multi-value parameter on statement, with custom formatting (using anorm.SeqParameter).

    Sets multi-value parameter on statement, with custom formatting (using anorm.SeqParameter).

    import anorm.SeqParameter
    SQL("SELECT * FROM Test t WHERE {categories}").
      on('categories -> SeqParameter(
        values = Seq("a", "b", "c"), separator = " OR ",
        pre = "EXISTS (SELECT NULL FROM j WHERE t.id=j.id AND name=",
        post = ")"))
    Definition Classes
    ToStatementPriority0
  • implicit def seqToStatement[A](implicit c: ToStatement[A]): ToStatement[Seq[A]]

    Sets multi-value parameter from sequence on statement.

    Sets multi-value parameter from sequence on statement.

    SQL("SELECT * FROM Test WHERE cat IN ({categories})").
      on('categories -> Seq("a", "b", "c")
    Definition Classes
    ToStatementPriority0
  • implicit def setToStatement[A](implicit c: ToStatement[A]): ToStatement[Set[A]]

    Sets multi-value parameter from set on statement.

    Sets multi-value parameter from set on statement.

    SQL("SELECT * FROM Test WHERE cat IN ({categories})").
      on('categories -> Set(1, 3, 4)
    Definition Classes
    ToStatementPriority0
  • implicit object shortToStatement extends ToStatement[Short]

    Sets short value on statement.

    Sets short value on statement.

    SQL("SELECT * FROM Test WHERE flag = {b}").on('b -> 1.toShort)
    Definition Classes
    ToStatementPriority0
  • implicit def someToStatement[A](implicit c: ToStatement[A]): ToStatement[Some[A]] with NotNullGuard

    Sets not empty optional A inferred as Some[A].

    Sets not empty optional A inferred as Some[A].

    SQL("SELECT * FROM Test WHERE category = {c}").on('c -> Some("cat"))
    Definition Classes
    ToStatementPriority0
  • implicit def sortedSetToStatement[A](implicit c: ToStatement[A]): ToStatement[SortedSet[A]]

    Sets multi-value parameter from sorted set on statement.

    Sets multi-value parameter from sorted set on statement.

    SQL("SELECT * FROM Test WHERE cat IN ({categories})").
      on('categories -> SortedSet("a", "b", "c")
    Definition Classes
    ToStatementPriority0
  • implicit def streamToStatement[A](implicit c: ToStatement[A]): ToStatement[Stream[A]]

    Sets multi-value parameter from stream on statement.

    Sets multi-value parameter from stream on statement.

    SQL("SELECT * FROM Test WHERE cat IN ({categories})").
      on('categories -> Stream(1, 3, 4)
    Definition Classes
    ToStatementPriority0
  • implicit object stringToStatement extends ToStatement[String]

    Sets string as parameter value.

    Sets string as parameter value. Value null is accepted.

    SQL("SELECT * FROM tbl WHERE name = {n}").on("n" -> "str")
    Definition Classes
    ToStatementPriority0
  • final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  • implicit object timestampToStatement extends ToStatement[Timestamp]

    Sets timestamp as statement parameter.

    Sets timestamp as statement parameter. Value null is accepted.

    SQL("UPDATE tbl SET modified = {ts}").
      on('ts -> new Timestamp(date.getTime))
    Definition Classes
    ToStatementPriority0
  • implicit def timestampWrapper1ToStatement[T <: TimestampWrapper1]: ToStatement[T]

    Sets a wrapped timestamp as statement parameter.

    Sets a wrapped timestamp as statement parameter. For null value, setNull with TIMESTAMP is called on statement.

    val wrapper = new {
      // Any value with a `.getTimestamp`
      val getTimestamp = new java.sql.Timestamp(123L)
    }
    
    SQL("UPDATE tbl SET modified = {ts}").on('ts -> wrapper)
    Definition Classes
    ToStatementPriority0
  • def toString(): String
    Definition Classes
    AnyRef → Any
  • implicit object uuidToStatement extends ToStatement[UUID]

    Sets UUID as statement parameter.

    Sets UUID as statement parameter. For null value, setNull with VARCHAR is called on statement.

    SQL("INSERT INTO lang_tbl(id, name) VALUE ({i}, {n})").
      on("i" -> JUUID.randomUUID(), "n" -> "lang")
    Definition Classes
    ToStatementPriority0
  • implicit def vectorToStatement[A](implicit c: ToStatement[A]): ToStatement[Vector[A]]

    Sets multi-value parameter from vector on statement.

    Sets multi-value parameter from vector on statement.

    SQL("SELECT * FROM Test WHERE cat IN ({categories})").
      on('categories -> Vector("a", "b", "c")
    Definition Classes
    ToStatementPriority0
  • final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  • final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  • final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

  • RetroSearch is an open source project built by @garambo | Open a GitHub Issue

    Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

    HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4