mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-25 00:36:00 +00:00
generate SQL - execute procedure TSQL
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user