68 lines
3.4 KiB
TypeScript
68 lines
3.4 KiB
TypeScript
import { entityKind } from "../entity.js";
|
|
import type { MigrationConfig, MigrationMeta } from "../migrator.js";
|
|
import { type BuildRelationalQueryResult, type DBQueryConfig, type Relation, type TableRelationalConfig, type TablesRelationalConfig } from "../relations.js";
|
|
import { type QueryWithTypings, SQL } from "../sql/sql.js";
|
|
import { SQLiteColumn } from "./columns/index.js";
|
|
import type { SQLiteDeleteConfig, SQLiteInsertConfig, SQLiteUpdateConfig } from "./query-builders/index.js";
|
|
import { SQLiteTable } from "./table.js";
|
|
import { type Casing, type UpdateSet } from "../utils.js";
|
|
import type { SQLiteSelectConfig } from "./query-builders/select.types.js";
|
|
import type { SQLiteSession } from "./session.js";
|
|
export interface SQLiteDialectConfig {
|
|
casing?: Casing;
|
|
}
|
|
export declare abstract class SQLiteDialect {
|
|
static readonly [entityKind]: string;
|
|
constructor(config?: SQLiteDialectConfig);
|
|
escapeName(name: string): string;
|
|
escapeParam(_num: number): string;
|
|
escapeString(str: string): string;
|
|
private buildWithCTE;
|
|
buildDeleteQuery({ table, where, returning, withList, limit, orderBy }: SQLiteDeleteConfig): SQL;
|
|
buildUpdateSet(table: SQLiteTable, set: UpdateSet): SQL;
|
|
buildUpdateQuery({ table, set, where, returning, withList, joins, from, limit, orderBy }: SQLiteUpdateConfig): SQL;
|
|
/**
|
|
* Builds selection SQL with provided fields/expressions
|
|
*
|
|
* Examples:
|
|
*
|
|
* `select <selection> from`
|
|
*
|
|
* `insert ... returning <selection>`
|
|
*
|
|
* If `isSingleTable` is true, then columns won't be prefixed with table name
|
|
*/
|
|
private buildSelection;
|
|
private buildJoins;
|
|
private buildLimit;
|
|
private buildOrderBy;
|
|
private buildFromTable;
|
|
buildSelectQuery({ withList, fields, fieldsFlat, where, having, table, joins, orderBy, groupBy, limit, offset, distinct, setOperators, }: SQLiteSelectConfig): SQL;
|
|
buildSetOperations(leftSelect: SQL, setOperators: SQLiteSelectConfig['setOperators']): SQL;
|
|
buildSetOperationQuery({ leftSelect, setOperator: { type, isAll, rightSelect, limit, orderBy, offset }, }: {
|
|
leftSelect: SQL;
|
|
setOperator: SQLiteSelectConfig['setOperators'][number];
|
|
}): SQL;
|
|
buildInsertQuery({ table, values: valuesOrSelect, onConflict, returning, withList, select }: SQLiteInsertConfig): SQL;
|
|
sqlToQuery(sql: SQL, invokeSource?: 'indexes' | undefined): QueryWithTypings;
|
|
buildRelationalQuery({ fullSchema, schema, tableNamesMap, table, tableConfig, queryConfig: config, tableAlias, nestedQueryRelation, joinOn, }: {
|
|
fullSchema: Record<string, unknown>;
|
|
schema: TablesRelationalConfig;
|
|
tableNamesMap: Record<string, string>;
|
|
table: SQLiteTable;
|
|
tableConfig: TableRelationalConfig;
|
|
queryConfig: true | DBQueryConfig<'many', true>;
|
|
tableAlias: string;
|
|
nestedQueryRelation?: Relation;
|
|
joinOn?: SQL;
|
|
}): BuildRelationalQueryResult<SQLiteTable, SQLiteColumn>;
|
|
}
|
|
export declare class SQLiteSyncDialect extends SQLiteDialect {
|
|
static readonly [entityKind]: string;
|
|
migrate(migrations: MigrationMeta[], session: SQLiteSession<'sync', unknown, Record<string, unknown>, TablesRelationalConfig>, config?: string | MigrationConfig): void;
|
|
}
|
|
export declare class SQLiteAsyncDialect extends SQLiteDialect {
|
|
static readonly [entityKind]: string;
|
|
migrate(migrations: MigrationMeta[], session: SQLiteSession<'async', any, any, any>, config?: string | MigrationConfig): Promise<void>;
|
|
}
|