SqliteQueryBuilder is the query builder for SQLite databases.
BuildFrom generates a FROM clause from the given tables.
BuildGroupBy generates a GROUP BY clause from the given group-by columns.
BuildHaving generates a HAVING clause from the given expression.
BuildJoin generates a JOIN clause from the given join information.
BuildLimit generates the LIMIT clause.
BuildOrderBy generates the ORDER BY clause.
BuildOrderByAndLimit generates the ORDER BY and LIMIT clauses.
BuildSelect generates a SELECT clause from the given selected column names.
BuildUnion generates a UNION clause from the given union information.
This is similar to BaseQueryBuilder.BuildUnion but without the parenthesis wrapping.
BuildWhere generates a WHERE clause from the given expression.
CombineUnion combines the nonempty unionClause with the provided sql string.
This is similar to BaseQueryBuilder.CombineUnion but without the parenthesis wrapping.
DB returns the DB instance associated with the query builder.
Generated using TypeDoc
SqliteQueryBuilder is the query builder for SQLite databases.