SYNC: multi-sql

This commit is contained in:
SPRINX0\prochazka
2025-02-24 12:20:30 +01:00
committed by Diflow
parent 8bdd24aa1e
commit bdd9dc8c9d
27 changed files with 526 additions and 11 deletions

View File

@@ -257,6 +257,8 @@ export interface EngineDriver<TClient = any> extends FilterBehaviourProvider {
): any[];
// adapts table info from different source (import, other database) to be suitable for this database
adaptTableInfo(table: TableInfo): TableInfo;
// simple data type adapter
adaptDataType(dataType: string): string;
listSchemas(dbhan: DatabaseHandle<TClient>): SchemaInfo[];
analyserClass?: any;