Module Mssql.Row
val create_exn : month_offset:int -> colnames:string list -> Freetds.Dblib.data list -> tval to_alist : t -> (string * string) listto_alist tconverts t to a list of (colname, value) pairs
val bignum : t -> string -> Bignum.t optionbignum colnamereturns the value of the given column, or None if the column is null. Throws an exception if the column can't be converted to a bignum or wasn't in the query.
val bignum_exn : t -> string -> Bignum.tbignum_exn colnamesimilar tobignumbut asserts that the column namedcolnameexists and the data is not null.
val bool : t -> string -> bool optionbool colnamereturns the value of the given column, or None if the column is null. Throws an exception if the column can't be converted to a bool or wasn't in the query.
val bool_exn : t -> string -> boolbool_exn colnamesimilar toboolbut asserts that the column namedcolnameexists and the data is not null.
val float : t -> string -> float optionfloat colnamereturns the value of the given column, or None if the column is null. Throws an exception if the column can't be converted to a float or wasn't in the query.
val float_exn : t -> string -> floatfloat_exn colnamesimilar tofloatbut asserts that the column namedcolnameexists and the data is not null.
val int : t -> string -> int optionint colnamereturns the value of the given column, or None if the column is null. Throws an exception if the column can't be converted to an int or wasn't in the query.
val int_exn : t -> string -> intint_exn colnamesimilar tointbut asserts that the column namedcolnameexists and the data is not null.
val int32 : t -> string -> int32 optionint32 colnamereturns the value of the given column, or None if the column is null. Throws an exception if the column can't be converted to an int32 or wasn't in the query.
val int32_exn : t -> string -> int32int32_exn colnamesimilar toint32but asserts that the column namedcolnameexists and the data is not null.
val int64 : t -> string -> int64 optionint64 colnamereturns the value of the given column, or None if the column is null. Throws an exception if the column can't be converted to an int64 or wasn't in the query.
val int64_exn : t -> string -> int64int64_exn colnamesimilar toint64but asserts that the column namedcolnameexists and the data is not null.
val str : t -> string -> string optionstr colnamereturns the value of the given column, or None if the column is null. Throws an exception if the column wasn't in the query.
val str_exn : t -> string -> stringstr_exn colnamesimilar tostrbut asserts that the column namedcolnameexists and the data is not null.
val date : t -> string -> Core.Date.t optiondate colnamereturns the value of the given column, or None if the column is null. Throws an exception if the column can't be converted to a bool or wasn't in the query.
val date_exn : t -> string -> Core.Date.tdate_exn colnamesimilar todatebut asserts that the column namedcolnameexists and the data is not null.
val datetime : t -> string -> Core.Time.t optiondatetime colnamereturns the value of the given column, or None if the column is null. Throws an exception if the column can't be converted to a bool or wasn't in the query.
val datetime_exn : t -> string -> Core.Time.tdatetime_exn colnamesimilar todatetimebut asserts that the column namedcolnameexists and the data is not null.