// try and get the connection
con = DriverManager.getConnection( dbURL, dbUser, dbPassword );
}
// store the Connection and return the uid handle of the Connection
return( new IntegerValue( SQLModule.storeConnection( context, con ) ) );
}
catch( IllegalAccessException iae ) {
logger.error( "sql:get-connection() Illegal Access to database driver class: " + dbDriver, iae );
throw( new XPathException( this, "sql:get-connection() Illegal Access to database driver class: " + dbDriver, iae ) );
}