From: Christoph B. <ic...@ch...> - 2004-10-28 14:11:44
|
Hello, I would like to store an Int64.t in a DB trough the Dbi-module of extlib. How is this possible? I would expect an `Int64 variant in Dbi.sql_t or somthing like Decimat.of_int64. Thanks, Christoph Bauer -- let () = let rec f a w i j = Printf.printf "%.20f\r" a; let a1 = a *. i /. j in if w then f a1 false (i +. 2.0) j else f a1 true i (j +. 2.0) in f 2.0 false 2.0 1.0 |