You can search for identifiers within the package.
in-package search v0.2.0
petrol
Sqlite3.Type
Defines all supported Sqlite types.
type 'a t = 'a Type.t
Represents a SQL type.
val bool : bool t
bool represents the SQL boolean type (internally the type is INTEGER, as Sqlite does not have a dedicated boolean type).
bool
val int : int t
int represents the SQL INTEGER type.
int
val real : float t
real represents the SQL REAL type.
real
val text : string t
text represents the SQL TEXT type.
text
val blob : string t
blob represents the SQL BLOB type.
blob
module Numeric = Type.Numeric