# Connection pool settings ConnectionPoolSize = 10 ConnectionPoolMax = 200 ConnectionUseCount = 500 ConnectionTimeout = 10 ConnectionPoolTimeout = 20
public void frSelectList(SesameSession session, ValidationList selList, String pGlobal, HashMap selectedVals, HashMap attributes) { // code removed for clarity try{ con = Z.pool.getConnection(); sql = "select security_user_id, first_name || ' ' || last_name from security_user"; pstmt = con.prepareStatement(sql); rs = pstmt.executeQuery(); selList.put( "$$USER$$","* Current User Name *"); while(rs.next()) { selList.put( rs.getString(1), rs.getString(2)); } pstmt.close(); } catch(SQLException sqle) { Z.log.writeToLog(Z.log.ERROR, "UserCustom.getAllowedValues SQLException: " + sql); ErrorWriter.write(sqle, ErrorWriter.LOGERR); } catch(Exception e){ ErrorWriter.write(e, ErrorWriter.LOGERR); } finally{ if (con != null) Z.pool.close(con); } } return; }
2003-12-26 14:35:52 [ info ] USER_CUSTOM_CLASSNAME=com.extraview.usercustom.myUserCustom3
2004-01-02 14:00:18 [ info ] Manage Log Files Entered, prefix= art , suffix= .log
There will be a line like the following defining the log file’s name –