web_plsql
Version:
The Express Middleware for Oracle PL/SQL
10 lines (9 loc) • 532 B
TypeScript
export function getProcedureVariable(procName: string, argObj: argObjType, databaseConnection: Connection, options: configPlSqlHandlerType): Promise<{
sql: string;
bind: BindParameterConfig;
}>;
export type Connection = import("oracledb").Connection;
export type Result = import("oracledb").Result<unknown>;
export type configPlSqlHandlerType = import("./types.js").configPlSqlHandlerType;
export type argObjType = import("./types.js").argObjType;
export type BindParameterConfig = import("./types.js").BindParameterConfig;