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.
12 lines (11 loc) • 423 B
TypeScript
export interface ConnectionConfiguration {
allowEmptyString: boolean;
escape(identifier: string, strict: boolean): string;
insensitiveCollation?: string;
/** @deprecated use insensitiveCollation property instead */
insesitiveCollation?: string;
getDateTimeFormat?(type: string): string;
compatibilityMode?: boolean;
uuidStrategy?: string;
alwaysUseReturningClauseWhenInsert?: boolean;
}