Skip to main content

Module table

Module table 

Source

Structs§

Column
The schema for each SQL column in every table.
Table
The schema for each SQL Table is represented in memory by following structure.

Enums§

DataType
SQLRite data types Mapped after SQLite Data Type Storage Classes and SQLite Affinity Type (Datatypes In SQLite Version 3)[https://www.sqlite.org/datatype3.html]
Row
The schema for each SQL row in every table is represented in memory by following structure
Value
Runtime value produced by query execution. Separate from the on-disk Row enum so the executor can carry typed values (including NULL) across operators.