Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Sqlite3.Data
SourceType of columns
opt_text value
converts value
to a Data.t
TEXT
value, converting None
to SQLite NULL
.
opt_int value
converts value
to a Data.t
INT
value, converting None
to SQLite NULL
.
opt_nativeint value
converts value
to a Data.t
INT
value, converting None
to SQLite NULL
.
opt_int32 value
converts value
to a Data.t
INT
value, converting None
to SQLite NULL
.
opt_int64 value
converts value
to a Data.t
INT
value, converting None
to SQLite NULL
.
opt_float value
converts value
to a Data.t
FLOAT
value, converting None
to SQLite NULL
.
opt_bool value
converts value
to a Data.t
INT
value, converting None
to SQLite NULL
.
to_string data
converts data
to Some string
or None
if it is not a valid conversion. This method also converts data of type BLOB to a string.
to_int data
converts data
to Some int
or None
if it is not a valid conversion.
to_nativeint data
converts data
to Some nativeint
or None
if it is not a valid conversion.
to_int32 data
converts data
to Some int32
or None
if it is not a valid conversion.
to_int64 data
converts data
to Some int64
or None
if it is not a valid conversion.
to_float data
converts data
to Some float
or None
if it is not a valid conversion.
to_bool data
converts data
to Some bool
or None
if it is not a valid conversion.
to_string_coerce data
coerces data
to a string, using coercion on ints, NULLs, floats, and other data types.