Queries
QueryBuilder is the entry point for all statement types. It provides a fluent API for SELECT queries on its instance, and static factory methods that return dedicated builder objects for DML and DDL statements.
Statement types
SqlResult
Every builder returns a SqlResult from its build() or buildSql() method:
All user-supplied values are placed in the ? bind-parameter list and are never concatenated into the SQL string. See SQL Dialects for how identifier quoting behaves across database targets.
