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 Db_field.t := t
val t_of_sexp : Sexplib0__.Sexp.t -> tval sexp_of_t : t -> Sexplib0__.Sexp.t
val of_data : month_offset:int -> Freetds.Dblib.data -> t optionval to_string : t option -> stringval to_string_escaped : t option -> stringval bignum : ?column:string -> t -> Bignum.tval float : ?column:string -> t -> floatval int : ?column:string -> t -> intval int32 : ?column:string -> t -> int32val int64 : ?column:string -> t -> int64val bool : ?column:string -> t -> boolval str : ?column:string -> t -> stringval date : ?column:string -> t -> Core.Date.tval datetime : ?column:string -> t -> Core.Time.t