generate SQL - execute procedure TSQL

This commit is contained in:
SPRINX0\prochazka
2024-12-04 13:15:06 +01:00
parent 767c835a8e
commit 0fde8c49a7
6 changed files with 64 additions and 13 deletions

View File

@@ -17,6 +17,7 @@ import type {
CheckInfo,
AlterProcessor,
SqlObjectInfo,
CallableObjectInfo,
} from 'dbgate-types';
import _isString from 'lodash/isString';
import _isNumber from 'lodash/isNumber';
@@ -782,4 +783,9 @@ export class SqlDumper implements AlterProcessor {
this.endCommand();
}
}
declareVariable(name: string, type: string, defaultValueLiteral?: string) {}
executeCallable(func: CallableObjectInfo, argLiterals: string[]) {
this.putCmd('^call %f(%,s)', func, argLiterals);
}
}