epgsql_pool.hrl 348 B

123456789101112
  1. -record(epgsql_params, {
  2. host :: string(),
  3. port :: non_neg_integer(),
  4. username :: string(),
  5. password :: string(),
  6. database :: string(),
  7. connection_timeout :: non_neg_integer(),
  8. query_timeout :: non_neg_integer()
  9. }).
  10. -define(POOL_NAME, epgsql_pool).