ADO interface for connection to LINTER DBMS.

To use this interface from a program you should load ADO extension:

require_once('adodb.inc.php');

Sequence of statements used to create new connection to LINTER DBMS:

$conn = NewADOConnection("linter");
$res = $conn->PConnect('', 'SYSTEM', 'MANAGER', '');

The 1st argument is ignored (can be empty) 
The 2nd argument contains username
The 3rd argument contains password
The 4th argument contains LINTER server node name
(should be empty if you are connecting to local DBMS instance)
