mysql-json-table: Using MySQL to store id-to-json tables.

[ database, library, mit, program ] [ Propose Tags ]

Visit the homepage for more information, or read the readme.


[Skip to Readme]

Modules

  • Database
    • MySQL
      • Database.MySQL.JSONTable

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.1.0, 0.1.2.0, 0.1.3.0, 0.1.4.0
Change log changelog.md
Dependencies aeson, base (<5), bytestring, conduit, exceptions, hashable, http-api-data, mysql, mysql-json-table, mysql-simple (>=0.4.8) [details]
License MIT
Author Daniel Casanueva (daniel.casanueva `at` proton.me)
Maintainer Daniel Casanueva (daniel.casanueva `at` proton.me)
Category Database
Home page https://gitlab.com/daniel-casanueva/haskell/mysql-json-table
Uploaded by DanielDiaz at 2024-03-23T08:53:04Z
Distributions LTSHaskell:0.1.4.0, NixOS:0.1.4.0, Stackage:0.1.4.0
Executables mysql-json-table-test
Downloads 130 total (32 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2024-03-23 [all 2 reports]

Readme for mysql-json-table-0.1.4.0

[back to package description]

mysql-json-table

Using mysql to store id-to-json tables.

A table would look something like this:

id data
Row identifier JSON-encoded value

Why would you do this?

To re-use mysql-server capabilities without having to deal with table reshaping. If changes come down the road, the data content might change, but the table stays the same. JSON can easily be made compatible between versions, making for smoother releases and rollbacks. It's also simple, and I like simple.

Documentation

Haddock documentation can be found here (based on the main branch).