Password - property of the PmaDatabase object
Description:
Password for an access to databases/tables.
Note:
Property access
for read and write. The preset value of this property is defined in the "
Password" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var sPass = oDb.Password; //Reading the value
oDb.Password = "admin"; //Writing the value
Dim sPass
sPass = oDb.Password 'Reading the value
oDb.Password = "admin" 'Writing the value