Logo ProcessCore

SqlParameter Type

A single named parameter bound to an SqlValue, used to compose SqlParameters.

Constructors

Constructor Description

SqlParameter(Name, Value)

Full Usage: SqlParameter(Name, Value)

Parameters:
Returns: SqlParameter
Name : string
Value : SqlValue
Returns: SqlParameter

Instance members

Instance member Description

this.Name

Full Usage: this.Name

Returns: string

The parameter name. Sigil-handling is the driver's responsibility.

Returns: string

this.Value

Full Usage: this.Value

Returns: SqlValue

The bound SqlValue.

Returns: SqlValue

Static members

Static member Description

SqlParameter.create (Name, Value)

Full Usage: SqlParameter.create (Name, Value)

Parameters:
    Name : string - Parameter name (with or without sigil).
    Value : SqlValue - The bound value.

Returns: SqlParameter

Named-argument constructor exposed to JavaScript and Python callers via Fable's NamedParams.

Name : string

Parameter name (with or without sigil).

Value : SqlValue

The bound value.

Returns: SqlParameter

Type something to start searching.