MasterColumns

sealed class MasterColumns(name: String) : KQLiteTable

Represents the schema of the special SQLite master tables (sqlite_schema, sqlite_master, etc.). These tables are read-only and contain the schema for all other tables and indices in the database.

This is a sealed class, with concrete implementations like SQLiteSchema and SQLiteMaster.

Author

MOHAMMAD AZIM ANSARI

Inheritors

Constructors

Link copied to clipboard
protected constructor(name: String)

Properties

Link copied to clipboard

The name of the object.

Link copied to clipboard

The root page number of the object in the database file.

Link copied to clipboard

The original SQL text that defines the object. This can be null for some objects.

Link copied to clipboard

The name of the table the object is associated with.

Link copied to clipboard

The type of the object: "table", "index", "view", or "trigger".