Module Dbcaml.Res

type connection_error =
  1. | ConnectionError of string
  2. | AuthenticationError of string
  3. | GeneralError of string

Connection errors

type execution_error =
  1. | ExecutionError of string
  2. | NoRows
  3. | GeneralError of string
  4. | FatalError of string
  5. | BadResponse of string

Execution errors

val connection_error_to_string : connection_error -> string
val execution_error_to_string : execution_error -> string