View Source Snowpack.Query (Snowpack v0.7.0)

Implementation of DBConnection.Query for Snowpack.

The structure is:

  • name - currently not used.
  • statement - SQL statement to run using :odbc.

Link to this section Summary

Link to this section Types

@type t() :: %Snowpack.Query{
  columns: [String.t()] | nil,
  name: iodata(),
  num_params: term(),
  ref: term(),
  statement: iodata(),
  type: term()
}