MssqlexV3 v3.0.4 MssqlexV3.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() :: %MssqlexV3.Result{
  columns: [String.t()] | nil,
  num_rows: integer() | :undefined,
  rows: [[term()] | binary()] | nil
}