InParam

object InParam

Provides factory methods for InParam.

Companion
class
class Object
trait Matchable
class Any

Type members

Classlikes

object Null extends InParam

Represents general-purpose instance of null input parameter.

Represents general-purpose instance of null input parameter.

Value members

Concrete methods

def apply[T](value: T, isNull: Boolean, sqlType: Int): InParam

Creates InParam with supplied properties.

Creates InParam with supplied properties.

Value Params
isNull

indicates whether value is null

sqlType

value type as defined in java.sql.Types

value

parameter value

def apply[T](value: T, sqlType: Int): InParam

Creates InParam with supplied value and type. The isNull property is set according to value.

Creates InParam with supplied value and type. The isNull property is set according to value.

Value Params
sqlType

value type as defined in java.sql.Types

value

parameter value

def apply(value: String): InParam

Creates InParam from String.

Creates InParam from String.

def apply(value: Boolean): InParam

Creates InParam from Boolean.

Creates InParam from Boolean.

def apply(value: Byte): InParam

Creates InParam from Byte.

Creates InParam from Byte.

def apply(value: Short): InParam

Creates InParam from Short.

Creates InParam from Short.

def apply(value: Int): InParam

Creates InParam from Int.

Creates InParam from Int.

def apply(value: Long): InParam

Creates InParam from Long.

Creates InParam from Long.

def apply(value: Float): InParam

Creates InParam from Float.

Creates InParam from Float.

def apply(value: Double): InParam

Creates InParam from Double.

Creates InParam from Double.

def apply(value: BigDecimal): InParam

Creates InParam from BigDecimal.

Creates InParam from BigDecimal.

def apply(value: Date): InParam

Creates InParam from Date.

Creates InParam from Date.

def apply(value: Time): InParam

Creates InParam from Time.

Creates InParam from Time.

def apply(value: Timestamp): InParam

Creates InParam from Timestamp.

Creates InParam from Timestamp.

def apply(value: LocalDate): InParam

Creates InParam from LocalDate.

Creates InParam from LocalDate.

def apply(value: LocalTime): InParam

Creates InParam from LocalTime.

Creates InParam from LocalTime.

def apply(value: LocalDateTime): InParam

Creates InParam from LocalDateTime.

Creates InParam from LocalDateTime.