TableDataTab

This commit is contained in:
Jan Prochazka
2020-01-25 13:50:48 +01:00
parent c189886c15
commit 8646221b41
16 changed files with 159 additions and 87 deletions

View File

@@ -1,3 +1,5 @@
import { ChildProcess } from 'child_process';
export interface EngineDriver {
connect({ server, port, user, password });
query(pool, sql: string): Promise<any[]>;
@@ -23,4 +25,5 @@ export interface OpenedDatabaseConnection {
id: string;
database: string;
structure: DatabaseInfo;
}
subprocess: ChildProcess;
}