Mssqlex v2.0.0-beta.0 Mssqlex.Result View Source

Result struct returned from any successful query. Its fields are:

  • columns - The names of each column in the result set;
  • rows - The result set. A list of tuples, each tuple corresponding to a

          row, each element in the tuple corresponds to a column;
  • num_rows - The number of fetched or affected rows;

Link to this section Summary

Link to this section Types

Link to this type

t()

View Source
t() :: %Mssqlex.Result{
  columns: [String.t()] | nil,
  num_rows: integer() | :undefined,
  rows: [[term()] | binary()] | nil
}