View Source Adbc.Result (adbc v0.3.1)

A struct returned as result from queries.

It has two fields:

  • :data - a map of field names to a list of values

  • :num_rows - the number of rows returned, if returned by the database

Summary

Types

@type t() :: %Adbc.Result{
  data: %{optional(binary()) => [term()]},
  num_rows: non_neg_integer() | nil
}