ts-sql-query
Version:
Type-safe SQL query builder like QueryDSL or JOOQ in Java or Linq in .Net for TypeScript with MariaDB, MySql, Oracle, PostgreSql, Sqlite and SqlServer support.
10 lines (9 loc) • 323 B
TypeScript
export interface ConnectionConfiguration {
allowEmptyString: boolean;
escape(identifier: string, strict: boolean): string;
insesitiveCollation?: string;
getDateTimeFormat?(type: string): string;
compatibilityMode?: boolean;
uuidStrategy?: string;
alwaysUseReturningClauseWhenInsert?: boolean;
}