Skip to Main Content

Developer Community

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

DBMS_LDAP.open_ssl returns 0 value.Does that mean it established connection?

Lavanya ManneApr 17 2025

BEGIN
-- Open an SSL connection to the LDAP
ret_val := DBMS_LDAP.open_ssl(ldap_session,NULL,NULL,ldap_auth_level);
EXCEPTION
WHEN OTHERS THEN
dbms_output.put_line(SQLERRM);
END;

 dbms\_output.put\_line('Opened an SSL connection to the LDAP');  
 dbms\_output.put\_line('ret\_val to open SSL connection '||ret\_val);

ret_val returns value 0.Does that mean it established connection?

Comments
Post Details
Added on Apr 17 2025
0 comments
152 views