View Source Ecto.Adapters.ClickHouse (Ecto ClickHouse v0.3.4)

Adapter module for ClickHouse.

It uses Ch for communicating to the database.

Options

All options can be given via the repository configuration:

config :your_app, YourApp.Repo,
  ...
  • :hostname - Server hostname (default: "localhost")
  • :username - Username
  • :password - User password
  • :port - HTTP Server port (default: 8123)
  • :scheme - HTTP scheme (default: "http")
  • :database - the database to connect to (default: "default")
  • :settings - Keyword list of connection settings
  • :transport_opts - Options to be given to the transport being used. See Mint.HTTP1.connect/4 for more info

Summary

Functions

Link to this function

delete(adapter_meta, schema_meta, params, opts)

View Source