module Dbi_sqlite: sig
.. end
Functional version of new Dbi.connection ...
val encode_sql_t : [< `Binary of 'a
| `Blob of string
| `Bool of bool
| `Date of Dbi.date
| `Decimal of Dbi.Decimal.t
| `Float of float
| `Int of int
| `Interval of 'b
| `Null
| `String of string
| `Time of Dbi.time
| `Timestamp of 'c
| `Unknown of string ] ->
string
class statement : Dbi.connection
-> Sqlite.db
-> string
-> object
.. end
class connection : string option
-> string option
-> string option
-> string option
-> string
-> object
.. end
val connect : ?host:string ->
?port:string ->
?user:string -> ?password:string -> string -> connection
Functional version of new Dbi.connection ...
val close : connection -> unit
Functional version of dbh#close ()
val closed : connection -> bool
Functional version of dbh#closed
val commit : connection -> unit
Functional version of dbh#commit ()
val ping : connection -> bool
Functional version of dbh#ping ()
val rollback : connection -> unit
Functional version of dbh#rollback ()