create script callable from react

This commit is contained in:
Jan Prochazka
2020-02-03 20:34:38 +01:00
parent 680bed549f
commit 8a85cfe687
14 changed files with 147 additions and 95 deletions

View File

@@ -8,8 +8,8 @@ class SqlDumper {
putRaw(text) {
this.s += text;
}
putCmd(text) {
this.putRaw(text);
putCmd(format, ...args) {
this.put(format, ...args);
this.putRaw(';\n');
}
putFormattedValue(c, value) {