9293949596979899100101102
} public void setBoolean(int paramInt, boolean paramBoolean) throws SQLException { try { getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramBoolean)); } catch (JIException e) { throw new SQLException(e); } }
102103104105106107108109110111
} public void setByte(int paramInt, byte paramByte) throws SQLException { try { getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramByte)); } catch (JIException e) { throw new SQLException(e); } }
111112113114115116117118119120
} public void setShort(int paramInt, short paramShort) throws SQLException { try { getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramShort)); } catch (JIException e) { throw new SQLException(e); } }
120121122123124125126127128129
} public void setInt(int paramInt1, int paramInt2) throws SQLException { try { getOceStatement().setParameter(getPName(paramInt1), new OCVariant(paramInt2)); } catch (JIException e) { throw new SQLException(e); } }
129130131132133134135136137138
} public void setLong(int paramInt, long paramLong) throws SQLException { try { getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramLong)); } catch (JIException e) { throw new SQLException(e); } }
138139140141142143144145146147
} public void setFloat(int paramInt, float paramFloat) throws SQLException { try { getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramFloat)); } catch (JIException e) { throw new SQLException(e); } }
147148149150151152153154155156
} public void setDouble(int paramInt, double paramDouble) throws SQLException { try { getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramDouble)); } catch (JIException e) { throw new SQLException(e); } }
156157158159160161162163164165
} public void setBigDecimal(int paramInt, BigDecimal paramBigDecimal) throws SQLException { try { getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramBigDecimal)); } catch (JIException e) { throw new SQLException(e); } }
165166167168169170171172173174
} public void setString(int paramInt, String paramString) throws SQLException { try { getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramString)); } catch (JIException e) { throw new SQLException(e); } }
174175176177178179180181182183
} public void setBytes(int paramInt, byte[] paramArrayOfByte) throws SQLException { try { getOceStatement().setParameter(getPName(paramInt), new OCVariant(new String(paramArrayOfByte))); } catch (JIException e) { throw new SQLException(e); } }