909192939495969798
{ url = new java.net.URL(datastoreValue.trim()); } catch (MalformedURLException mue) { throw new JPOXDataStoreException(LOCALISER.msg("041033", datastoreValue), mue); } return url; }
162163164165166167168
else if (oid instanceof Short) { return ((Short)oid).longValue(); } throw new JPOXDataStoreException(LOCALISER.msg("040009", name)); }
652653654655656657658659660661662
return null; } } catch (SQLException e) { throw new JPOXDataStoreException(e.getMessage(),e); } if (cmd == null) { cmd = om.getMetaDataManager().getMetaDataForClass(getType(),om.getClassLoaderResolver());
131132133134135136137138
{ ((PreparedStatement) ps).setDouble(param, value); } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001","double","" + value, column, e.getMessage()), e); } }
143144145146147148149150
{ ((PreparedStatement) ps).setDouble(param, value); } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055002","float","" + value, column, e.getMessage()), e); } }
155156157158159160161162
{ ((PreparedStatement) ps).setInt(param, value); } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001","int","" + value, column, e.getMessage()), e); } }
177178179180181182183184185186
} } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055002","double","" + param, column, e.getMessage()), e); } return value; }
201202203204205206207208209210
} } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001","float","" + param, column, e.getMessage()), e); } return value; }
225226227228229230231232233234
} } } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055002","int","" + param, column, e.getMessage()), e); } return value; }
239240241242243244245246
{ ((PreparedStatement) ps).setLong(param, value); } catch (SQLException e) { throw new JPOXDataStoreException(LOCALISER.msg("055001","long","" + value, column,e.getMessage()), e); } }