* @return The nested connection
* @throws SQLException Not running in a SQL statement
*/
private static Connection getDefaultConn()throws SQLException
{
InternalDriver id = InternalDriver.activeDriver();
if (id != null) {
Connection conn = id.connect( "jdbc:default:connection", null, 0 );
if (conn != null)
return conn;
}
throw Util.noCurrentConnection();
}