package mysql_protocol

  1. Overview
  2. Docs
OCaml implementation of the native MySQL/MariaDB Protocol with the Bitstring library

Install

Dune Dependency

Authors

Maintainers

Sources

3.0.3.tar.gz
md5=25881ffc4a6c0e974703d014b6b38a42
sha512=60ee821bfeaaf7996d803f560d87f171e5205cd41494cc5579d8e794755b1f1747e7c7da9d83b6e4c73ebe41d680a2306db2d26b72467c7d8789573da37f246c

CHANGES.md.html

v3.0.3 (2022-04-12)

  • Avoid error with UNIX socket

v3.0.2 (2022-04-03)

  • Update charsets and collations

  • Unbreak benchmark build

v3.0.1 (2020-11-22)

  • OPAM linting

v3.0 (2020-11-22)

  • MariaDB compatibility

  • Dunification

  • PPX Bitstring

  • Implements reset connection

v2.0 (2016-02-10)

This new release introduces backward incompatible changes:

  • the old native_data type is now private, you have to use the new data_* and to_ocaml_* functions to convert the data between OCaml world and MySQL world.

  • get_result_set function has a new signature: val get_result_set : result -> Mp_result_set_packet.result_select

  • insert_id is now a tuple of type (Int64.t * Big_int.big_int). The Int64 value must be used when the auto_increment field is not a BIGINT UNSIGNED, otherwise the Big_int value must be used.

v1.1 (2015-10-28)

  • Add opam file

v1.0 (2014-10-18)

  • Initial version