BPS Script API  2.24.4
bps::installer Namespace Reference

The bps.installer extension is a namespace holding classes for installation and update of the BPS database. More...

Classes

class  Installer
 The Installer class serves to install or update a BPS datastore. More...
 

Detailed Description

The bps.installer extension is a namespace holding classes for installation and update of the BPS database.

The extension needs to be loaded before it can be used. Note that the bps extension will automaticly be loaded before the bps.installer extension:

importExtension('bps.installer');
with (bps) {
var ds = new bps.Datastore;
...
var inst = new installer.Installer(ds);
inst.setVerbose(2);
inst.update(inst.latestLevel());
...
void importExtension(String aExtensionName)
Imports the named extension into the script engine.
The datastore class is used to access the BPS databases.
Definition: bps.Datastore.js:10
The bps extension is a namespace assembling general BPS properties and functions.
Definition: bps.AsyncIO.js:1