235236237238239240241242243
{ ((PreparedStatement) ps).setBoolean(param, value); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001", "boolean", "" + value, column, e.getMessage()), e); } }
250251252253254255256257258259260
{ value = ((ResultSet) rs).getBoolean(param); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002", "boolean", "" + param, column, e.getMessage()), e); } return value; }
265266267268269270271272273
{ ((PreparedStatement) ps).setDouble(param, value); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001", "double","" + value, column, e.getMessage()), e); } }
287288289290291292293294295296
} } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002","double","" + param, column, e.getMessage()), e); } return value; }
301302303304305306307308309
{ ((PreparedStatement) ps).setDouble(param, value); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002", "float","" + value, column, e.getMessage()), e); } }
323324325326327328329330331332
} } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001","float","" + param, column, e.getMessage()), e); } return value; }
337338339340341342343344345
{ ((PreparedStatement) ps).setShort(param, value); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001", "short", "" + value,column, e.getMessage()), e); } }
359360361362363364365366367368
} } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002","short", "" + param, column, e.getMessage()), e); } return value; }
373374375376377378379380
{ ((PreparedStatement) ps).setLong(param, value); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001","long", "" + value, column, e.getMessage()), e); } }
394395396397398399400401402403
} } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002","long", "" + param, column, e.getMessage()), e); } return value; }