SQLiteMaster

class SQLiteMaster @JvmOverloads constructor(temp: Boolean = false) : MasterColumns

Represents the sqlite_master table in a SQLite database.

This table is the original system catalog that holds the schema for all tables, indexes, views, and triggers. While sqlite_schema is now the preferred and recommended table for schema information, sqlite_master is retained for backward compatibility. By default, this class targets sqlite_master, but can be configured to target the temporary schema table, sqlite_temp_master.

This class inherits columns like type, name, tblName, rootPage, and sql from the MasterColumns base class.

Author

MOHAMMAD AZIM ANSARI

Parameters

temp

If true, this object will represent the sqlite_temp_master table, which contains the schema for temporary database objects. Defaults to false.

See also

Constructors

Link copied to clipboard
constructor(temp: Boolean = false)