Snowflex v0.1.0 Snowflex
The client interface for connecting to the Snowflake data warehouse.
The main entry point to this module is Snowflex.sql_query
. This function takes a string containing
a SQL query and returns a list of maps (one per row). NOTE: due to the way the Erlang ODBC works, all values comeback
as strings. You will need to cast values appropriately.
Link to this section Summary
Link to this section Types
Link to this section Functions
Link to this function
param_query(pool_name, query, params \\ [], timeout \\ 60000)
param_query(atom(), String.t(), [query_param()], non_neg_integer() | :infinity) :: sql_data() | {:error, term()}
Link to this function
sql_query(pool_name, query, timeout \\ 60000)
sql_query(atom(), String.t(), non_neg_integer() | :infinity) :: sql_data() | {:error, term()}