Connection parameters in Ecto

Background

I am reading Ecto’s documentation for a project, and I stumbled upon the parameters field in Ecto.Connection: https://hexdocs.pm/ecto_sql/Ecto.Adapters.Postgres.html#module-connection-options

:parameters - Keyword list of connection parameters 

Question

The description says I need to use a keyword list of connection parameters but:

  1. it does not specify what parameters are available (I could pass a connection parameter called bananas and the code would probably blow. What values does it accept?)
  2. it does not specify the format of said parameters (strings, atoms, booleans, etc)

So, where can I find the information regarding this parameters? Where is it documented?

1 Like

In your database drivers documentation.

Ecto does not deal with this parameters but passes them transparently to your driver.

2 Likes