Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the server beyond simple SELECT/INSERT/UPDATE/DELETE operations with LDAP.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from LDAP, along with an indication of whether the procedure succeeded or failed.
CData MCP Server for LDAP Stored Procedures
| Name | Description |
| AddMembersToGroup | Adds specified users to a group in the LDAP directory. The group and user entries are identified by their Distinguished Names (DNs). |
| ChangePassword | Changes the password of the current user. Requires the current password for authentication. Use ResetPassword for administrator-level password resets. The User in the connection settings must be a valid DN, and the connection must use SSL for security. |
| GetAttributes | Retrieves all attribute names and their corresponding values for a specified Distinguished Name (DN) in the LDAP directory. |
| MoveToDN | Moves an object from one Distinguished Name (DN) location to another in the LDAP directory. |
| RemoveMembersFromGroup | Removes specified users from a group in the LDAP directory. The group and users are identified by their Distinguished Names (DNs). |
| ResetPassword | Resets the password for a specific user identified by DN. Use this procedure for administrator-level resets when the current password is not required. The AdminUser or User in the connection settings must be a valid DN, and the connection must use SSL. |