Xqlite.Schema.DatabaseInfo (Xqlite v0.7.0)

View Source

Information about an attached database, corresponding to PRAGMA database_list.

Summary

Types

t()

Struct definition.

Types

t()

@type t() :: %Xqlite.Schema.DatabaseInfo{file: String.t() | nil, name: String.t()}

Struct definition.

  • :name - The logical name of the database (e.g., "main", "temp", or attached name).
  • :file - The absolute path to the database file, or nil for in-memory/temporary databases.