|
|
|
|
- Retrieving the rights granted to the users and copying these rights
HInfoServerRights (Example)
Retrieving the rights granted to the users and copying these rights
sRights is string // Retrieves the rights to create the database granted to // the usernamed Smith on the server of the CNT connection sRights = HInfoServerRights("CNT", "Smith", hRightsCreateDB) SWITCH sRights CASE hAllowed ... CASE hForbidden ... CASE hInherit ... END END // Retrieve the final rights to create the database // of the usernamed Smith on the server of CNT connection sRights = HInfoServerRights("CNT", "Smith", hRightsCreateDB) SWITCH sRights CASE hAllowed ... CASE hForbidden ... END END // Copy the rights from a user to another one sRights1 is string sRights1 = HInfoServerRights("CNT", "Smith", hRightsCreateDB) HModifyServerRights("CNT", "Clark", hRightsCreateDB, sRights1)
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|