The following example shows you how to get the script version and base decisions on its value. This example assumes you have
a DBConnectionContext instance named _cc.
// A method that uses the script version
public void handleEvent() {
// ...
String version = _cc.getVersion();
if (version.equals("My Version 1")) {
// ...
} else if (version.equals("My Version 2")) {
// ...
}
}
// ...