KQLite Schema
interface KQLiteSchema
Functions
Link copied to clipboard
Initiates an ALTER TABLE operation on a specified table.
Link copied to clipboard
Creates all defined indexes for a given table.
Link copied to clipboard
Creates a new table in the database based on the provided table definition. This function generates and executes a CREATE TABLE SQL statement. It also automatically creates any indexes defined on the table.
Link copied to clipboard
Creates a new table and populates it with the result set of a SELECT statement. This is equivalent to the SQL CREATE TABLE ... AS SELECT ... statement. The columns of the new table have the same names and declared types as the columns of the result set from the selectStatement.
Link copied to clipboard
Creates a new view in the database.