340341342343344345346347348
{ ((PreparedStatement) ps).setShort(param, value); } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001", "short", "" + value,column, e.getMessage()), e); } }
362363364365366367368369370371
} } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055002","short", "" + param, column, e.getMessage()), e); } return value; }
376377378379380381382383
{ ((PreparedStatement) ps).setLong(param, value); } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001","long", "" + value, column, e.getMessage()), e); } }
397398399400401402403404405406
} } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055002","long", "" + param, column, e.getMessage()), e); } return value; }
460461462463464465466467
((PreparedStatement) ps).setBigDecimal(param, new BigDecimal((BigInteger)value)); } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001","Numeric", "" + value, column, e.getMessage()), e); } }
536537538539540541542543
return new Long(value.longValue()); } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055002","Numeric", "" + param, column, e.getMessage()),e); } }
151152153154155156157158
} } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001", "Timestamp", "" + value, column, e.getMessage()), e); } }
198199200201202203204205206207208
value = s == null ? null : TypeConversionHelper.stringToTimestamp(s, cal); } } catch (SQLException nestedEx) { throw new JPOXDataStoreException(LOCALISER.msg("055002", "Timestamp", "" + param, column, e.getMessage()), nestedEx); } } return value; }
8687888990919293
{ ((PreparedStatement) ps).setBoolean(param, value); } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001", "boolean", "" + value, column, e.getMessage()), e); } }
100101102103104105106107108109
{ value = ((ResultSet) rs).getBoolean(param); } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055002","Boolean", "" + param, column, e.getMessage()), e); } return value; }