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
|
Full Usage:
Int int
Parameters:
int
|
Represents a SQL 32-bit signed
|
Full Usage:
Null
|
Represents a SQL |
Full Usage:
Text string
Parameters:
string
|
Represents a SQL
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsInt
Returns: bool
|
|
Full Usage:
this.IsNull
Returns: bool
|
|
Full Usage:
this.IsText
Returns: bool
|
|
ProcessCore