The global application instance.
Get the global Application.
Get the global Container.
Escape the given value and return the query-safe equivalent.
Get the method with the given name from this class, bound to this class.
function
Call the make()
method on the global container.
Given a table schema-builder, render an ALTER TABLE...
query.
Given a table schema-builder, render a series of queries as a transaction that apply the given schema to database.
Given an array of Constraint objects, render them as WHERE-clause SQL in this dialect.
This function should escape the values before they are included in the query string.
Wrap the given query string as a "SELECT ..." query that returns the number of rows matched by the original query string.
The resultant query should return the extollo_render_count
field with the
number of rows that the original query
would return.
Given an index schema-builder, render a CREATE INDEX...
query.
Given a table schema-builder, render a CREATE TABLE...
query.
Render the given query builder as a "DELETE ..." query string.
This function should escape the values before they are included in the query string.
Given a column schema-builder, render an ALTER TABLE... DROP COLUMN...
query.
Given an index schema-builder, render a DROP INDEX...
query.
Given a table schema-builder, render a DROP TABLE...
query.
Render the given query builder as a query that can be used to test if at least 1 row exists for the given builder.
The resultant query should return at least 1 row if that condition is met, and should return NO rows otherwise.
This function should escape the values before they are included in the query string.
Render the given query as an "INSERT ..." query string, inserting rows for the given data object(s).
This function should escape the values before they are included in the query string.
Given a rendered "SELECT ..." query string, wrap it such that the query will
only return the rows ranging from the start
to end
indices.
Given an index schema-builder, render either an ALTER INDEX...
query,
or a DROP INDEX...; CREATE INDEX...
query.
Given an index schema-builder, render an ALTER INDEX... RENAME...
query.
Render the given query builder as a "SELECT ..." query string.
This function should escape the values before they are included in the query string.
Render the table-column definitions for the table defined by the given schema-builder.
Given a series of fully-formed queries, render them as a single transaction.
Render the given query builder as an "UPDATE ..." query string, setting the column values from the given data object.
This function should escape the values before they are included in the query string.
Render the "SET ... [field = value ...]" portion of the update query.
This function should escape the values before they are included in the query string.
extollo (v. latin) - to lift up, to elevate
Extollo is a free & libre application framework in TypeScript.
Abstract class defining a particular dialect of SQL that is used to render query builders to strings of SQL of that dialect for execution by Connection instances.