KQLite Table
constructor(name: String, temp: Boolean = false, ifNotExists: Boolean = true, strict: Boolean = false, withoutRowId: Boolean = false)
Parameters
name
The name of the table in the database. It will be escaped for special characters.
temp
If true, creates a TEMP table. Default is false.
if Not Exists
If true, the CREATE TABLE statement will include IF NOT EXISTS. Default is true.
strict
If true, enables STRICT mode for the table, enforcing more rigid data type validation.