Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
I need to call pl\sql procedure with dynamicSQL jdbc adapter. Any help? DB procedure below:
create or replace PROCEDURE TESTPROCEDURE1(var1 in VARCHAR2, var2 out VARCHAR2) AS BEGIN var2:=‘aaa’; END TESTPROCEDURE1;
Please use the search functionality on this section with the keyword dynamicSQL and you see various results and take the syntax from there:
HTH, RMG
i haven’t found an answer…
Why do you want to use DynamicSQL instead of StoredProcedure? From what you are showing, it’s perfect to call it using StoredProcedure type.
OK…Are you not able to use with stored procedure with signature template?
This case is related to my another problem generic JdbcAdapter for stored procedures - webMethods - Software AG Tech Community & Forums
No one try to call procedure from dynamicSql or customSql?