LibSqlEx.Result (LibSqlEx v0.1.0)

View Source

Summary

Types

command_type()

@type command_type() :: :select | :insert | :update | :delete | :other

t()

@type t() :: %LibSqlEx.Result{
  columns: [String.t()] | nil,
  command: command_type(),
  num_rows: non_neg_integer(),
  rows: [[term()]] | nil
}

Functions

new(options)

@spec new(Keyword.t()) :: t()