tds v1.0.3 Tds.Result View Source
Result struct returned from any successful query. Its fields are:
columns
- The column names;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() :: %Tds.Result{columns: [String.t] | nil, command: term, num_rows: integer, rows: [tuple] | nil}