XmlElement rsEle = ( XmlElement )vRS.elementAt( i );
if ( rsEle.getName().compareTo( "Connection" ) == 0 ) {
String extraDbDriver = rsEle.getAttribute( "driver" );
String extraDbUrl = rsEle.getAttribute( "url" );
extraDbUrl = checkLocalHsqldb( extraDbDriver, extraDbUrl );
connMgr.addConnection( rsEle.getAttribute( "id" ),
extraDbDriver,
extraDbUrl,
rsEle.getAttribute( "user" ),
rsEle.getAttribute( "pwd" ) );
}