1.8

Table Of Contents
Examples
data.findRegExp(/\d{3}-[A-Z]{3}/,"gi",50,100);
or
data.findRegExp("\\d{3}-[A-Z]{3}","gi",50,100);}}
Both expressions would match the following strings: 001-ABC, 678-xYz.
Note how in the second version, where the regular expression is specified as a string, some
characters have to be escaped with an additional backslash, which is standard in JavaScript.
db
Object that allows to connect to a database.
Methods
The following table describes the methods of the db object.
Method Description Available in File
type
connect
()
Method that returns a new
database connection object.
Boundaries
Preprocessor, Extract, Condition,
Repeat, Action, and Postprocessor
steps
all
connect()
Method that returns a new database connection object.
connect(url, user, password)
This method returns a new database connection object after connecting to the given URL and
authenticating the connection with the provided user and password information.
url
String that represents the url to connect to.
Page 282