Popularity
2.5
Stable
Activity
0.0
Stable
10
3
2
Monthly Downloads: 0
Programming language: Elixir
License: MIT License
Tags:
ORM And Datamapping
hstore alternatives and similar packages
Based on the "ORM and Datamapping" category.
Alternatively, view hstore alternatives based on common mentions on social networks and blogs.
-
paper_trail
Track and record all the changes in your database with Ecto. Revert back to anytime in history. -
ExAudit
Ecto auditing library that transparently tracks changes and can revert them. -
ecto_psql_extras
Ecto PostgreSQL database performance insights. Locks, index usage, buffer cache hit ratios, vacuum stats and more. -
arbor
Ecto elixir adjacency list and tree traversal. Supports Ecto versions 2 and 3. -
sqlitex
An Elixir wrapper around esqlite. Allows access to sqlite3 databases. -
boltun
Transforms notifications from the Postgres LISTEN/NOTIFY mechanism into callback execution -
sql_dust
Easy. Simple. Powerful. Generate (complex) SQL queries using magical Elixir SQL dust.
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of hstore or a related project?
Popular Comparisons
README
Hstore
HStore support for Postgrex
def deps do
[{:hstore, "~> 0.0.2"}]
end
Now all up in your iex -S mix
:
opts = [
hostname: "localhost",
username: "postgres",
database: "hstore_database",
encoder: &Hstore.encoder/3,
decoder: &Hstore.decoder/4,
formatter: &Hstore.formatter/1
]
{:ok, pid} = Postgrex.Connection.start_link(opts)
Postgrex.Connection.query(pid, "SELECT * FROM table_with_hstore", [])