Logo ProcessCore

SqlValue Type

SQLite values supported by the shared, Fable-compatible API surface.

The shared API intentionally exposes only the three SQLite storage classes that map cleanly across .NET, JavaScript and Python: NULL, TEXT and 32-bit signed INTEGER. Larger integers, floating-point, blob and date/time values are not part of the cross-runtime contract — drivers either reject them or coerce them into one of these three cases.

Union cases

Union case Description

Int int

Full Usage: Int int

Parameters:
    Item : int

Represents a SQL 32-bit signed INTEGER value. Drivers reject values outside Int32.

Item : int

Null

Full Usage: Null

Represents a SQL NULL.

Text string

Full Usage: Text string

Parameters:
    Item : string

Represents a SQL TEXT value.

Item : string

Instance members

Instance member Description

this.IsInt

Full Usage: this.IsInt

Returns: bool
Returns: bool

this.IsNull

Full Usage: this.IsNull

Returns: bool
Returns: bool

this.IsText

Full Usage: this.IsText

Returns: bool
Returns: bool

Type something to start searching.