Popularity
2.5
Stable
Activity
0.0
Stable
10
3
2

Monthly Downloads: 4
Programming language: Elixir
License: MIT License

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.

Do you think we are missing an alternative of hstore or a related project?

Add another 'ORM and Datamapping' Package

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", [])