Skip to content
A database wrapper and language integrated query for Elixir
Branch: master
Clone or download
304 and josevalim Fix: prefix for many to many associations (#2987)
Closes #2985.

`join_through` for many to many associations can be defined using a
schema or a table name. The problem was that the `rewrite_join_prefix`
method for the second case has not been defined. Because of that the
prefix assignment was skipped.
Latest commit 306d549 May 2, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
examples/friends Update examples/friends deps (#2912) Feb 6, 2019
guides add docs for proper testing env setup with mix (#2928) Feb 27, 2019
integration_test Add missing :uses_usec tags (#2982) Apr 20, 2019
lib Fix: prefix for many to many associations (#2987) May 2, 2019
test Fix: prefix for many to many associations (#2987) May 2, 2019
.formatter.exs Remove "timestamps: 0" from .formatter.exs (#2527) Apr 28, 2018
.gitignore Move ecto_sql to a separate repository Oct 3, 2018
.travis.yml Require Elixir v1.5 and remove deprecated code Feb 6, 2019
CHANGELOG.md Release v3.1.3 Apr 30, 2019
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE.md Mar 1, 2018
LICENSE.md Include the actual LICENSE under LICENSE Nov 7, 2018
README.md Refer to MyXQL instead Apr 2, 2019
mix.exs Release v3.1.3 Apr 30, 2019
mix.lock

README.md

Ecto


Build Status

Ecto is a toolkit for data mapping and language integrated query for Elixir. Here is an example:

# In your config/config.exs file
config :my_app, ecto_repos: [Sample.Repo]

config :my_app, Sample.Repo,
  database: "ecto_simple",
  username: "postgres",
  password: "postgres",
  hostname: "localhost",
  port: "5432"

# In your application code
defmodule Sample.Repo do
  use Ecto.Repo,
    otp_app: :my_app,
    adapter: Ecto.Adapters.Postgres
end

defmodule Sample.Weather do
  use Ecto.Schema

  schema "weather" do
    field :city     # Defaults to type :string
    field :temp_lo, :integer
    field :temp_hi, :integer
    field :prcp,    :float, default: 0.0
  end
end

defmodule Sample.App do
  import Ecto.Query
  alias Sample.{Weather, Repo}

  def keyword_query do
    query =
      from w in Weather,
           where: w.prcp > 0 or is_nil(w.prcp),
           select: w

    Repo.all(query)
  end

  def pipe_query do
    Weather
    |> where(city: "Kraków")
    |> order_by(:temp_lo)
    |> limit(10)
    |> Repo.all
  end
end

Ecto is commonly used to interact with databases, such as Postgres and MySQL via Ecto.Adapters.SQL (source code). Ecto is also commonly used to map data from any source into Elixir structs, regardless if they are backed by a database or not.

See the getting started guide and the online documentation.

Also checkout the "What's new in Ecto 2.1" free ebook to learn more about many features since Ecto 2.1 such as many_to_many, schemaless queries, concurrent testing, upsert and more. Note the book still largely applies to Ecto 3.0 as the major change in Ecto 3.0 was the split of Ecto in two repositories (ecto and ecto_sql) and the removal of the outdated Ecto datetime types in favor of Elixir's Calendar types.

Usage

You need to add both Ecto and the database adapter as a dependency to your mix.exs file. The supported databases and their adapters are:

Database Ecto Adapter Dependencies Ecto 3.0 compatible?
PostgreSQL Ecto.Adapters.Postgres ecto_sql + postgrex Yes
MySQL Ecto.Adapters.MyXQL ecto_sql + myxql Yes
MSSQL MssqlEcto ecto_sql + mssql_ecto No
MSSQL Tds.Ecto ecto_sql + tds_ecto No
SQLite     Sqlite.Ecto2   ecto + sqlite_ecto2 No
Mnesia     EctoMnesia.Adapter   ecto + ecto_mnesia No

For example, if you want to use PostgreSQL, add to your mix.exs file:

defp deps do
  [
    {:ecto_sql, "~> 3.0"},
    {:postgrex, ">= 0.0.0"}
  ]
end

Then run mix deps.get in your shell to fetch the dependencies. If you want to use another database, just choose the proper dependency from the table above.

Finally, in the repository definition, you will need to specify the adapter: respective to the chosen dependency. For PostgreSQL it is:

defmodule MyApp.Repo do
  use Ecto.Repo,
    otp_app: :my_app,
    adapter: Ecto.Adapters.Postgres,
  ...

Supported Versions

Branch Support
v3.0 Bug fixes
v2.2 Security patches only
v2.1 Unsupported from 10/2018
v2.0 Unsupported from 08/2017
v1.1 Unsupported from 03/2018
v1.0 Unsupported from 05/2017

With the version 3.0, Ecto has become API stable. This means no more new features, although we will continue providing bug fixes and updates. For everyone running Ecto in production, rest assured that Ecto will continue to be a well maintained project with the same production quality and polish that our users are familiar with.

Important links

Running tests

Clone the repo and fetch its dependencies:

$ git clone https://github.com/elixir-ecto/ecto.git
$ cd ecto
$ mix deps.get
$ mix test

Note that mix test does not run the tests in integration_test folder, because Ecto does not ship with any adapters to run them against. Adapter libraries like ecto_sql can run these tests as part of their suites.

Copyright and License

"Ecto" and the Ecto logo are Copyright (c) 2012 Plataformatec.

The Ecto logo was designed by Dane Wesolko.

The source code is under the Apache 2 License.

Copyright (c) 2012 Plataformatec

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

You can’t perform that action at this time.