|
|
|
|
- Changing the owner of a data file
<Connection variable>.ModifyFileProperty (Function) In french: <Variable Connexion>.ModifiePropriétéFichier
Available only with this kind of connection
Modifies the properties of an HFSQL data file located on a server. // Describe the connection MyConnection is Connection ResModif is boolean ResModif = MyConnection.ModifyFileProperty(hOwner, ... "Vince", "MyDatabase", "Customer.fic") IF ResModif = True THEN Info("Modification performed") END
Syntax
<Result> = <Connection>.ModifyFileProperty(<Property to modify> , <New value> , <Database> , <Data file>)
<Result>: Boolean - True if the properties have been modified,
- False otherwise. HErrorInfo is used to identify the error.
<Connection>: Connection variable Name of the Connection variable that describes the connection for which the value of a property must be modified. <Property to modify>: Integer constant Property of the data file that must be modified: | | hNotes | Description of the data file or any other information associated with the data file. If this constant is used, <New value> is a character string containing the text of the note. | hOwner | Owner of data file. If this constant is used, <New value> is a character string containing the name of the owner. |
<New value>: Character string New value for the property. <Database>: Character string Name of the database containing the data file for which the properties must be modified. If this parameter corresponds to an empty string (""), the database defined in the connection will be used. A WLanguage error occurs if no database is defined in the connection. <Data file>: Character string Name of the data file for which the properties must be modified. The file extension must be specified. Remarks Changing the owner of a data file - The user specified as new owner must be a user found on the server. A WLanguage error occurs if the user does not exist.
- To modify the owner, the user who performs the modification must:
- be a "Super user".
- have the rights to change the owner of the data file (rights corresponding to the hRightsChangeOwner constant). To determine if the user has the appropriate rights, use <Connection variable>.InfoFileProperty.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|