You can search for identifiers within the package.
in-package search v0.2.0
mssql
Mssql.Param
A wrapper for Mssql data types. Use this instead of format strings to protect yourself from SQL injection
type t =
| Bignum of Bignum.t
| Bool of bool
| Float of float
| Int of int
| Int32 of int32
| Int64 of int64
| String of string
| Date of Core.Time.t
| Array of t list
val compare : t -> t -> int
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.t
val of_data : month_offset:int -> Freetds.Dblib.data -> t option
val to_string : t option -> string
val to_string_escaped : t option -> string
val bignum : ?column:string -> t -> Bignum.t
val float : ?column:string -> t -> float
val int : ?column:string -> t -> int
val int32 : ?column:string -> t -> int32
val int64 : ?column:string -> t -> int64
val bool : ?column:string -> t -> bool
val str : ?column:string -> t -> string
val date : ?column:string -> t -> Core.Date.t
val datetime : ?column:string -> t -> Core.Time.t