553554555556557558559560561562
{ return ((XAConnection) this.conn).getConnection(); } catch (SQLException e) { throw new NucleusDataStoreException(e.getMessage(), e); } } return null; }
147148149150151152153154155156
} catch (SQLException e) { if (++attempts >= maxRetries) { throw new NucleusDataStoreException("Exception thrown performing schema operation : " + this, e); } } } }
102103104105106107108109
((PreparedStatement) ps).setDate(param, (Date)value); } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001","java.sql.Date","" + value), e); } }
116117118119120121122123124125
{ value = ((ResultSet) rs).getDate(param); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002","java.sql.Date","" + param), e); } return value; }
134135136137138139140141
{ ((PreparedStatement) ps).setInt(param,value); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001","char", "" + value, column, e.getMessage()), e); } }
148149150151152153154155156
{ value = (char)((ResultSet) rs).getInt(param); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002","char", "" + param, column, e.getMessage()), e); } return value; }
161162163164165166167168
{ ((PreparedStatement) ps).setInt(param, value); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001","int", "" + value, column, e.getMessage()), e); } }
182183184185186187188189190191
} } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002","int", "" + param, column, e.getMessage()), e); } return value; }
199200201202203204205206
((PreparedStatement) ps).setInt(param, value); } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055001","byte", "" + value, column, e.getMessage()), e); } }
220221222223224225226227228229230
} } } catch (SQLException e) { throw new NucleusDataStoreException(LOCALISER_RDBMS.msg("055002", "byte", "" + param, column, e.getMessage()), e); } return value; }