127128129130131132133134
((PreparedStatement) ps).setBoolean(param, value.equals("Y") ? true : false); } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001", "String", "" + value, column, e.getMessage()), e); } }
147148149150151152153154155156
{ value = (((ResultSet) rs).getBoolean(param) ? "Y" : "N"); } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055002","String", "" + param, column, e.getMessage()), e); } return value; }
179180181182183184185186
} } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001","Object", "" + value, column, e.getMessage()), e); } }
209210211212213214215216217218
} } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055002", "Object", "" + param, column, e.getMessage()), e); } return value; }
2643264426452646264726482649265026512652
} catch (SQLException e) { if (++attempts >= maxRetries) { throw new JPOXDataStoreException("SQL exception: " + this, e); } } } }
979899100101102103104
{ ((PreparedStatement) ps).setLong(param, value); } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001", "int", "" + value), e); } }
119120121122123124125126127128
} } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055002", "int", "" + param, column, e.getMessage()), e); } return value; }
133134135136137138139140
{ ((PreparedStatement) ps).setLong(param, value); } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001", "long", "" + value, column, e.getMessage()), e); } }
155156157158159160161162163164
} } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055002", "long", "" + param, column, e.getMessage()), e); } return value; }
197198199200201202203204
} } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001", "Long", "" + value, column, e.getMessage()), e); } }