Connect from Elixir with Ecto to Neon
Set up a Neon project in seconds and connect from Elixir with Ecto
This guide describes how to connect from an Elixir application with Ecto, which is a database wrapper and query generator for Elixir. Ecto provides an API and abstractions for interacting databases, enabling Elixir developers to query any database using similar constructs.
The instructions in this guide follow the steps outlined in the Ecto Getting Started guide, modified to demonstrate connecting to a Neon Serverless Postgres database. It is assumed that you have a working installation of Elixir.
To connect to Neon from Elixir with Ecto:
- Create a database in Neon and copy the connection string
- Create an Elixir project
- Add Ecto and Postgrex to the application
- Configure Ecto
- Create a migration and add a table
- Next steps
Create a database in Neon and copy the connection string
The instructions in this configuration use a database named friends
.
To create the database:
- Navigate to the Neon Console.
- Select a project.
- Select Databases.
- Select the branch where you want to create the database.
- Click New Database.
- Enter a database name (
friends
), and select a database owner. - Click Create.
You can obtain the connection string for the database from the Connection Details widget on the Neon Dashboard. Select a branch, a role, and the database you want to connect to. A connection string is constructed for you. Your connection string should look something like this:
You will need the connection string details later in the setup.
Create an Elixir project
Create an Elixir application called friends
.
The --sup
option ensures that the application has a supervision tree, which is required by Ecto.
Add Ecto and Postgrex to the application
-
Add the Ecto and the Postgrex driver dependencies to the
mix.exs
file by updating thedeps
definition in the file to include those items. For example:Ecto provides the common querying API. The Postgrex driver acts as a bridge between Ecto and Postgres. Ecto interfaces with its own
Ecto.Adapters.Postgres
module, which communicates to Postgres through the Postgrex driver. -
Install the Ecto and the Postgrex driver dependencies by running the following command in your application directory:
Configure Ecto
Run the following command in your application directory to generate the configuration required to connect from Ecto to your Neon database.
Follow these steps to complete the configuration:
-
The first part of the configuration generated by the
mix ecto.gen.repo
command is found in theconfig/config.exs
file. Update this configuration with your Neon database connection details. Use the connection details from the Neon connection string you copied in the first part of the guide. Yourhostname
will differ from the example below.The
:ssl
option is required to connect to Neon. Postgrex, since v0.18, verifies the server SSL certificate and you need to select CA trust store using:cacerts
or:cacertfile
options. You can use the OS-provided CA store by settingcacerts: :public_key.cacerts_get()
. While not recommended, you can disable certificate verification by settingssl: [verify: :verify_none]
. -
The second part of the configuration generated by the
mix ecto.gen.repo
command is theEcto.Repo
module, found inlib/friends/repo.ex
. You shouldn't have to make any changes here, but verify that the following configuration is present:Ecto uses the module definition to query the database. The
otp_app
setting tells Ecto where to find the database configuration. In this case, the:friends
application is specified, so Ecto will use the configuration defined in the that application'sconfig/config.exs
file. The:adapter
option defines the Postgres adapter. -
Next, the
Friends.Repo
must be defined as a supervisor within the application's supervision tree. Inlib/friends/application.ex
, make sureFriends.Repo
is specified in thestart
function, as shown:This configuration starts the Ecto process, enabling it to receive and execute the application's queries.
-
The final part of the configuration is to add the following line under the configuration in the
config/config.exs
file that you updated in the first step:This line tells the application about the new repo, allowing you to run commands such as
mix ecto.migrate
, which you will use in a later step to create a table in your database.
Create a migration and add a table
Your friends
database is currently empty. It has no tables or data. In this step, you will add a table. To do so, you will create a "migration" by running the following command in your application directory:
The command generates an empty migration file in priv/repo/migrations
, which looks like this:
Add code to the migration file to create a table called people
. For example:
To run the migration and create the people
table in your database, which also verifies your connection to Neon, run the following command from your application directory:
The output of this command should appear similar to the following:
You can use the Tables feature in the Neon Console to view the table that was created:
- Navigate to the Neon Console.
- Select a project.
- Select Tables from the sidebar.
- Select the Branch, Database (
friends
), and the schema (public
). You should see thepeople
table along with aschema_migration
table that was created by the migration.
Application code
You can find the application code for the example above on GitHub.
Next steps
The Ecto Getting Started Guide provides additional steps that you can follow to create a schema, insert data, and run queries. See Creating the schema in the Ecto Getting Started Guide to pick up where the steps in this guide leave off.
Usage notes
- Suppose you have
PGHOST
environment variable on your system set to something other than your Neon hostname. In that case, this hostname will be used instead of the Neonhostname
defined in your Ecto Repo configuration when runningmix ecto
commands. To avoid this issue, you can either set thePGHOST
environment variable to your Neon hostname or specifyPGHOST=""
when runningmix ecto
commands; for example:PGHOST="" mix ecto.migrate
. - By default, Neon's Autosuspend feature scales computes to zero after 300 seconds (5 minutes) of inactivity, which can result in a
connection not available
error when runningmix ecto
commands. Typically, a Neon compute takes a few seconds to transition fromIdle
toActive
. Wait a few seconds and try running the command again. Alternatively, consider the strategies outlined in Connection latency and timeouts to manage connection issues resulting from compute suspension.
Need help?
Join our Discord Server to ask questions or see what others are doing with Neon. Users on paid plans can open a support ticket from the console. For more details, see Getting Support.