updating an open ldap server from an oracle proceedure question
I am working on adding/modifying/deleting in an open ldap server. I have created a search and I have it working and have just started with the add section of the procedure. I have looked at several different examples on the internet and have a few questions:
An example to add a user in the ldap server:
my_vals_cn := DBMS_LDAP.create_mod_array(1);
my_vals_cn(1) := 'Joe Smith';
DBMS_LDAP.populate_mod_array(my_array, DBMS_LDAP.MOD_ADD, 'cn', my_vals_cn);
*** I don't understand the following can someone explain the following section
my_vals_obj := DBMS_LDAP.create_mod_array(3);
An example to add a user in the ldap server:
my_vals_cn := DBMS_LDAP.create_mod_array(1);
my_vals_cn(1) := 'Joe Smith';
DBMS_LDAP.populate_mod_array(my_array, DBMS_LDAP.MOD_ADD, 'cn', my_vals_cn);
*** I don't understand the following can someone explain the following section
my_vals_obj := DBMS_LDAP.create_mod_array(3);
0