Progress 12.8 Stored Procedures invocation: Failed during dynamic load of Java dynamic library.

vkvisva

New Member
I am able to create a stored procedure successfully (and able to drop it, recreate it etc., and also when I give wrong parameters it correctly comes up with the error). However when calling the stored procedure I get this:

=== SQL Exception 1 ===
SQLState=HY000
ErrorCode=-210022
[DataDirect][OpenEdge JDBC Driver][OpenEdge] Failed during dynamic load of Java dynamic library. Reason = [126]The specified module could not be found.

I know that this question was asked earlier, in the context of triggers, etc., but for 12.x was never answered. I did not get any responses even in the Progress Community.
All the JDK, classpath parameters seem to be right with the correct versions. I have updated the JDK variables in all possible batch files, etc., and I only have one version of Java installed on my machine (17).
I assume that "specific module" refers to the compiled stored procedure dynamic library or class. Not sure why it would not be found, when "drop" and incorrect parameter validation are correctly working.
 
I am able to create a stored procedure successfully (and able to drop it, recreate it etc., and also when I give wrong parameters it correctly comes up with the error). However when calling the stored procedure I get this:

=== SQL Exception 1 ===
SQLState=HY000
ErrorCode=-210022
[DataDirect][OpenEdge JDBC Driver][OpenEdge] Failed during dynamic load of Java dynamic library. Reason = [126]The specified module could not be found.

I know that this question was asked earlier, in the context of triggers, etc., but for 12.x was never answered. I did not get any responses even in the Progress Community.
All the JDK, classpath parameters seem to be right with the correct versions. I have updated the JDK variables in all possible batch files, etc., and I only have one version of Java installed on my machine (17).
I assume that "specific module" refers to the compiled stored procedure dynamic library or class. Not sure why it would not be found, when "drop" and incorrect parameter validation are correctly working.
I was able to get this working. (In addition to setting all the Java environment variables, etc., it is looking for the JRE). I was under the impression that the java vm in the JDK would be used to execute the stored procedure dynamic library.
 
Back
Top