Sqlite.Ecto2 v2.4.0 Sqlite.DbConnection.Query

Query struct returned from a successfully prepared query.

Its public fields are:

  • name - The name of the prepared statement;
  • statement - The prepared statement;
  • columns - The column names;

Link to this section Summary

Link to this section Types

Link to this type

t()
t() :: %Sqlite.DbConnection.Query{
  columns: [String.t()] | nil,
  name: iodata(),
  prepared: reference(),
  result_formats: [:binary | :text] | nil,
  statement: iodata(),
  types: Sqlite.DbConnection.TypeServer.table() | nil
}