Query

SQL SELECT/UPDATE/DELETE query abstraction

This is the secondary base type for query building.

Not used with INSERT queries.

Query myQuery = table("my_table").qb;

Select myQuerySelectAll= myQuery.where(/* … */).select("*");
BuiltQuery myQuerySelectAllBuilt = myQuerySelectAll.build!Database;
@safe pure
struct Query {}

Members

Variables

table
Table table;
Undocumented in source.

Meta