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