8788899091929394959697
if (rs.next()) { return rs.getInt(1); } return null; } catch (SQLException e) { throw new JRScriptletException(e.getMessage(), e); } finally { try { rs.close(); } catch (SQLException e) { }
193194195196197198199200
logger.debug("OUT"); } catch (Exception e) { logger.error("Error in scriptlet",e); throw new JRScriptletException(e); } }
7980818283848586878889
p.periodEnd = rs.getDate(3); p.periodName = rs.getString(4); } return p; } catch (SQLException e) { throw new JRScriptletException(e.getMessage(), e); } finally { try { rs.close(); } catch (SQLException e) { }
112113114115116117118119120121122