Package org.tentackle.dbms.dsl


package org.tentackle.dbms.dsl
A type-safe DSL for SQL projection queries.

Projection queries deliver plain data, not PDOs. They are executed on the low level of the database layer, i.e. without a security manager, and their results are mapped to DTOs by ResultSetWrapper.toList(java.lang.Class).

The DSL builds the SQL-code and the parameter set of a Query from typed expressions instead of hand-written SQL-strings. It knows about the DataTypes and thus about the columns a value is mapped to, and it lets the Backend generate everything that is dialect-specific.

See Also: