Database - property of the PmaDatabase object
Description:
Path and name of a database file.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Database (file, folder, data source)" configurator of this object.
Possible name of the database file is set here without the extension (e.g. if the
temperatures.mdb file is referenced, then
temperatures is set in this property).
Example:
JavaScriptVBScriptSelect and copy to clipboard
var sDatabase = oDb.Database;
// or
oDb.Database = "c:\\temperatures";
Dim sDatabase
sDatabase = oDb.Database
' or
oDb.Database = "c:\temperatures"