145146147148149150151152153154
{ value = (((ResultSet) rs).getBoolean(param) ? "Y" : "N"); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002","String", "" + param, column, e.getMessage()), e); } return value; }
177178179180181182183184
} } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001","Object", "" + value, column, e.getMessage()), e); } }
207208209210211212213214215216
} } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002", "Object", "" + param, column, e.getMessage()), e); } return value; }
949596979899100101
{ ((PreparedStatement) ps).setLong(param, value); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001", "int", "" + value), e); } }
116117118119120121122123124125
} } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002", "int", "" + param, column, e.getMessage()), e); } return value; }
85868788899091929394
} } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001","float","" + param, column, e.getMessage()), e); } return value; }
99100101102103104105106
{ ((PreparedStatement) ps).setFloat(param, value); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002","float","" + value, column, e.getMessage()), e); } }
151152153154155156157158
((PreparedStatement) ps).setFloat(param, ((Double) value).floatValue()); } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001", "Object", "" + value, column, e.getMessage()), e); } }
186187188189190191192193194195
value = ((ResultSet) rs).wasNull() ? null : Double.valueOf(d); } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002","Object","" + param, column, e.getMessage()), e); } return value; }
130131132133134135136137
{ ((PreparedStatement) ps).setLong(param, value); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001", "long", "" + value, column, e.getMessage()), e); } }