| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import { entityKind } from "../../entity.js";
- import { QueryPromise } from "../../query-promise.js";
- import { type BuildQueryResult, type DBQueryConfig, type TableRelationalConfig, type TablesRelationalConfig } from "../../relations.js";
- import type { RunnableQuery } from "../../runnable-query.js";
- import type { Query, SQLWrapper } from "../../sql/sql.js";
- import type { KnownKeysOnly } from "../../utils.js";
- import type { SQLiteDialect } from "../dialect.js";
- import type { PreparedQueryConfig, SQLitePreparedQuery, SQLiteSession } from "../session.js";
- import type { SQLiteTable } from "../table.js";
- export type SQLiteRelationalQueryKind<TMode extends 'sync' | 'async', TResult> = TMode extends 'async' ? SQLiteRelationalQuery<TMode, TResult> : SQLiteSyncRelationalQuery<TResult>;
- export declare class RelationalQueryBuilder<TMode extends 'sync' | 'async', TFullSchema extends Record<string, unknown>, TSchema extends TablesRelationalConfig, TFields extends TableRelationalConfig> {
- protected mode: TMode;
- protected fullSchema: Record<string, unknown>;
- protected schema: TSchema;
- protected tableNamesMap: Record<string, string>;
- protected table: SQLiteTable;
- protected tableConfig: TableRelationalConfig;
- protected dialect: SQLiteDialect;
- protected session: SQLiteSession<'async', unknown, TFullSchema, TSchema>;
- static readonly [entityKind]: string;
- constructor(mode: TMode, fullSchema: Record<string, unknown>, schema: TSchema, tableNamesMap: Record<string, string>, table: SQLiteTable, tableConfig: TableRelationalConfig, dialect: SQLiteDialect, session: SQLiteSession<'async', unknown, TFullSchema, TSchema>);
- findMany<TConfig extends DBQueryConfig<'many', true, TSchema, TFields>>(config?: KnownKeysOnly<TConfig, DBQueryConfig<'many', true, TSchema, TFields>>): SQLiteRelationalQueryKind<TMode, BuildQueryResult<TSchema, TFields, TConfig>[]>;
- findFirst<TSelection extends Omit<DBQueryConfig<'many', true, TSchema, TFields>, 'limit'>>(config?: KnownKeysOnly<TSelection, Omit<DBQueryConfig<'many', true, TSchema, TFields>, 'limit'>>): SQLiteRelationalQueryKind<TMode, BuildQueryResult<TSchema, TFields, TSelection> | undefined>;
- }
- export declare class SQLiteRelationalQuery<TType extends 'sync' | 'async', TResult> extends QueryPromise<TResult> implements RunnableQuery<TResult, 'sqlite'>, SQLWrapper {
- private fullSchema;
- private schema;
- private tableNamesMap;
- private tableConfig;
- private dialect;
- private session;
- private config;
- static readonly [entityKind]: string;
- readonly _: {
- readonly dialect: 'sqlite';
- readonly type: TType;
- readonly result: TResult;
- };
- constructor(fullSchema: Record<string, unknown>, schema: TablesRelationalConfig, tableNamesMap: Record<string, string>,
- /** @internal */
- table: SQLiteTable, tableConfig: TableRelationalConfig, dialect: SQLiteDialect, session: SQLiteSession<'sync' | 'async', unknown, Record<string, unknown>, TablesRelationalConfig>, config: DBQueryConfig<'many', true> | true, mode: 'many' | 'first');
- prepare(): SQLitePreparedQuery<PreparedQueryConfig & {
- type: TType;
- all: TResult;
- get: TResult;
- execute: TResult;
- }>;
- private _toSQL;
- toSQL(): Query;
- execute(): Promise<TResult>;
- }
- export declare class SQLiteSyncRelationalQuery<TResult> extends SQLiteRelationalQuery<'sync', TResult> {
- static readonly [entityKind]: string;
- sync(): TResult;
- }
|