|
|
|
|
|
User (Property) In french: Utilisateur
 Not available with these kinds of connection
The User property is used to manage the user of a connection (HFSQL Client/Server, OLE DB, etc.). You can: - Identify the user of a connection (HFSQL Client/Server, OLE DB, etc.).
- Define the user of a connection (HFSQL Client/Server, OLE DB, ...). In this case, when you open a file that uses an open connection, that connection will be closed and reopened with the new parameters.
Note: The connection can correspond:
MyConnection is Connection // Describe the connection MyConnection.User = "FP" MyConnection.Password = "Test" MyConnection.Server = "MYSERVER" MyConnection.Database = "Database" MyConnection.Provider = hAccessHFClientServer MyConnection.Access = hOReadWrite MyConnection.ExtendedInfo = "Extended information" MyConnection.CursorOptions = hClientCursor HOpenConnection(MyConnection) Syntax
Identifying the user of a connection Hide the details
<Username> = <Connection used>.User
<Username>: Character string Name of the user of the connection. <Connection used>: Connection name Name of the connection used. This name is defined:
Defining the user of a connection Hide the details
<Connection used>.User = <New username>
<Connection used>: Connection name Name of the connection used. This name is defined: <New username>: Character string Name of the user of the connection. Remarks CtUserName is used to define the user of a connection. This property is kept for backward compatibility. It is recommended to use the User property.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|