HModifyViewRights (Function) In french: HModifieDroitVue
Available only with this kind of connection
Modifies the rights granted to a user or to a group on a SQL view or on a materialized view. Remark: To find out the rights granted to a group or to a user on an SQL view or on a materialized view, use HInfoViewRights.
// Copy the rights from a user to another one sRights is string sRights = HInfoViewRights("MyConnection", "Moore", ... hRightsRead + hRightsInsert, "MyDatabase", "MyCustomerView") HModifyViewRights("MyConnection", "Smith", ... hRightsRead + hRightsInsert, sRights, "MyDatabase", "MyCustomerView")
Syntax
<Result> = HModifyViewRights(<Connection> , <User/Group> , <Rights to modify> , <New values> , <Database> , <View>)
<Result>: Boolean - True if the rights have been modified,
- False otherwise. HErrorInfo is used to identify the error.
No modification is performed if the new value is already assigned to the specified rights.Remark: HErrorInfo will return an "Unknown user" or "Unknown group" error if the current user does not have the rights to see the users ( hRightsSeeUser constant) and if he wants to get information about another user or another group.
<Connection>: Character string or Connection variable Connection for which the rights granted to a user or to a group of users must be modified. This connection corresponds to: <User/Group>: Character string Name of the user or group whose rights must be modified. <Rights to modify>: Integer constant (or combination of constants) List of rights to modify: | | hRightsChangeRights | Rights to change rights. | hRightsDelete | Rights to delete records from a view. | hRightsDeleteView | Rights to delete a view. | hRightsInsert | Rights to add records to a view. | hRightsMaintenance | Rights to start a re-index operation or a statistical calculation on a materialized view. | hRightsRead | Rights to read the records of a view. | hRightsUpdate | Rights to modify the records of a view. |
<New values>: Integer constants List of new values for the modified rights. New values must be assigned to all the rights specified in <Rights to modify> (in the same order).If a single value is indicated in this parameter, it will be assigned to all the rights specified in <Rights to modify>. The possible values are:
| | hAllowed | The relevant rights are granted to the user or group. | hForbidden | The relevant rights are not granted to the user or group. | hInherit | The user will inherit from the value of the rights granted to the group to which he belongs. |
<Database>: Character string Name of the database containing the SQL view or the materialized view for which the rights must be modified. - If the database corresponds to the one defined in the connection, this parameter can correspond to an empty string ("").
- A WLanguage error occurs if no database is defined in the connection and if this parameter corresponds to an empty string.
<View>: Character string Name of the SQL view or materialized view for which the rights must be modified. Remarks When are rights changed? The change is effective as soon as HModifyViewRights is run. There is no need to restart the server to take the new rights into account.
This page is also available for…
|
|
|
|