Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { NativeQueryBuilder } from '../../query/NativeQueryBuilder.js';
/** @internal */
export declare class MsSqlNativeQueryBuilder extends NativeQueryBuilder {
compile(): {
sql: string;
params: unknown[];
};
protected compileInsert(): void;
private appendOutputTable;
private compileUpsert;
protected compileSelect(): void;
protected addLockClause(): void;
protected compileTruncate(): void;
/** MSSQL has no RECURSIVE keyword — CTEs are implicitly recursive. */
protected getCteKeyword(_hasRecursive: boolean): string;
}