User - property of the PmaDatabase object
Description:
User name (only for the user access oriented databases).
Note:
Property access
for read and write. The preset value of this property is defined in the "
User" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var sUser = oDb.User; //Reading the value
oDb.User = "operator"; //Writing the value
Dim sUser
sUser = oDb.User 'Reading the value
oDb.User = "operator" 'Writing the value