create table script

This commit is contained in:
Jan Prochazka
2020-03-02 22:08:06 +01:00
parent 08cef79f10
commit e038be12b9
5 changed files with 174 additions and 21 deletions

View File

@@ -1,5 +1,9 @@
import { TableInfo } from "./dbinfo";
export interface SqlDumper {
s: string;
put(format: string, ...args);
putCmd(format: string, ...args);
endCommand();
createTable(table: TableInfo);
}