psqlite library

Classes

ColumnDb
Defines a column of a database table. A TableDb object will be made up of a collection of ColumnDb objects.
FilterDb
Represents a filter that can be used in PSQlite to query SQLite with filters. Underneath, this will generate an SQL query with a Where clause.
ObjectStored
All objects that intend to be stored in SQLite databases should extend the ObjectStored class.
PSQLite
Encapsulates a database that is made up of a _table and a _dbName.
TableDb
Defines a table in a database. It consists of a collection of ColumnDb objects and a table name.

Enums

ConditionDb
Represents a condition that can be used to filter a request to PSQLite.
FieldTypeDb
Defines the type of the value of a column of a table in a database. SQLite does not have a separate Boolean storage class. Instead, Boolean values are stored as integers 0 (false) and 1 (true).

Extensions

CustomConditionDb on ConditionDb
CustomFieldTypeDb on FieldTypeDb
PrivatePSQLite on PSQLite
Private PSQLite operations.