5960616263646566
public String get(String name) throws DetailedViewException { try { return rs.getString(name.replace("-", "_")); } catch (SQLException exc) { throw new DetailedViewException(exc); } }
100101102103104105106107
setIdInPreparedStatement(pstmt, 1); rs = pstmt.executeQuery(); rs.next(); } catch (SQLException exc) { throw new DetailedViewException(exc); } }
117118119120121122123124
update(connection); } }.execute(); } catch (Exception exc) { throw new DetailedViewException(exc); } }
152153154155156157158159
} }.execute(); return getIdValue(); } catch (Exception exc) { throw new DetailedViewException(exc); } }