InParam

little.sql.InParam
See theInParam companion trait
object InParam

Provides factory methods for InParam.

Attributes

Companion
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
InParam.type

Members list

Type members

Classlikes

object Null extends InParam

Represents general-purpose instance of null input parameter.

Represents general-purpose instance of null input parameter.

Attributes

Supertypes
trait InParam
class Object
trait Matchable
class Any
Self type
Null.type

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 parameters

isNull

indicates whether value is null

sqlType

value type as defined in java.sql.Types

value

parameter value

Attributes

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 parameters

sqlType

value type as defined in java.sql.Types

value

parameter value

Attributes

def apply(value: String): InParam

Creates InParam from String.

Creates InParam from String.

Attributes

def apply(value: Boolean): InParam

Creates InParam from Boolean.

Creates InParam from Boolean.

Attributes

def apply(value: Byte): InParam

Creates InParam from Byte.

Creates InParam from Byte.

Attributes

def apply(value: Short): InParam

Creates InParam from Short.

Creates InParam from Short.

Attributes

def apply(value: Int): InParam

Creates InParam from Int.

Creates InParam from Int.

Attributes

def apply(value: Long): InParam

Creates InParam from Long.

Creates InParam from Long.

Attributes

def apply(value: Float): InParam

Creates InParam from Float.

Creates InParam from Float.

Attributes

def apply(value: Double): InParam

Creates InParam from Double.

Creates InParam from Double.

Attributes

def apply(value: BigDecimal): InParam

Creates InParam from BigDecimal.

Creates InParam from BigDecimal.

Attributes

def apply(value: Date): InParam

Creates InParam from Date.

Creates InParam from Date.

Attributes

def apply(value: Time): InParam

Creates InParam from Time.

Creates InParam from Time.

Attributes

def apply(value: Timestamp): InParam

Creates InParam from Timestamp.

Creates InParam from Timestamp.

Attributes

def apply(value: LocalDate): InParam

Creates InParam from LocalDate.

Creates InParam from LocalDate.

Attributes

def apply(value: LocalTime): InParam

Creates InParam from LocalTime.

Creates InParam from LocalTime.

Attributes

def apply(value: LocalDateTime): InParam

Creates InParam from LocalDateTime.

Creates InParam from LocalDateTime.

Attributes

def apply(value: Instant): InParam

Creates InParam from Instant.

Creates InParam from Instant.

Attributes