Sqlite3.Dataval opt_text : string option -> topt_text value converts value to a Data.t TEXT value, converting None to SQLite NULL.
val opt_int : int option -> topt_int value converts value to a Data.t INT value, converting None to SQLite NULL.
val opt_nativeint : nativeint option -> topt_nativeint value converts value to a Data.t INT value, converting None to SQLite NULL.
val opt_int32 : int32 option -> topt_int32 value converts value to a Data.t INT value, converting None to SQLite NULL.
val opt_int64 : int64 option -> topt_int64 value converts value to a Data.t INT value, converting None to SQLite NULL.
val opt_float : float option -> topt_float value converts value to a Data.t FLOAT value, converting None to SQLite NULL.
val opt_bool : bool option -> topt_bool value converts value to a Data.t INT value, converting None to SQLite NULL.
val to_string_exn : t -> stringto_string_exn data converts TEXT and BLOB data to a string.
val to_int_exn : t -> intto_int_exn data converts INT data to an int.
val to_nativeint_exn : t -> nativeintto_nativeint_exn data converts INT data to a nativeint.
val to_int32_exn : t -> int32to_int32_exn data converts INT data to an int32.
val to_int64_exn : t -> int64to_int64_exn data converts INT data to an int64.
val to_float_exn : t -> floatto_float_exn data converts FLOAT data to a float.
val to_bool_exn : t -> boolto_bool_exn data converts INT data to a bool.
val to_string : t -> string optionto_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.
val to_int : t -> int optionto_int data converts data to Some int or None if it is not a valid conversion.
val to_nativeint : t -> nativeint optionto_nativeint data converts data to Some nativeint or None if it is not a valid conversion.
val to_int32 : t -> int32 optionto_int32 data converts data to Some int32 or None if it is not a valid conversion.
val to_int64 : t -> int64 optionto_int64 data converts data to Some int64 or None if it is not a valid conversion.
val to_float : t -> float optionto_float data converts data to Some float or None if it is not a valid conversion.
val to_bool : t -> bool optionto_bool data converts data to Some bool or None if it is not a valid conversion.
val to_string_coerce : t -> stringto_string_coerce data coerces data to a string, using coercion on ints, NULLs, floats, and other data types.
val to_string_debug : t -> stringto_string_debug data converts data to a string including the data constructor. The contents of blobs will not be printed, only its length. Useful for debugging.