Package com.ipc.oce

Examples of com.ipc.oce.OCVariant


  }

 
  public void setBoolean(int paramInt, boolean paramBoolean) throws SQLException {
    try {
      getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramBoolean));
    } catch (JIException e) {
      throw new SQLException(e);
    }

  }
View Full Code Here


  }

 
  public void setByte(int paramInt, byte paramByte) throws SQLException {
    try {
      getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramByte));
    } catch (JIException e) {
      throw new SQLException(e);
    }
  }
View Full Code Here

  }

 
  public void setShort(int paramInt, short paramShort) throws SQLException {
    try {
      getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramShort));
    } catch (JIException e) {
      throw new SQLException(e);
    }
  }
View Full Code Here

  }

 
  public void setInt(int paramInt1, int paramInt2) throws SQLException {
    try {
      getOceStatement().setParameter(getPName(paramInt1), new OCVariant(paramInt2));
    } catch (JIException e) {
      throw new SQLException(e);
    }
  }
View Full Code Here

  }

 
  public void setLong(int paramInt, long paramLong) throws SQLException {
    try {
      getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramLong));
    } catch (JIException e) {
      throw new SQLException(e);
    }
  }
View Full Code Here

  }

 
  public void setFloat(int paramInt, float paramFloat) throws SQLException {
    try {
      getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramFloat));
    } catch (JIException e) {
      throw new SQLException(e);
    }
  }
View Full Code Here

  }

 
  public void setDouble(int paramInt, double paramDouble) throws SQLException {
    try {
      getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramDouble));
    } catch (JIException e) {
      throw new SQLException(e);
    }
  }
View Full Code Here

  }

 
  public void setBigDecimal(int paramInt, BigDecimal paramBigDecimal) throws SQLException {
    try {
      getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramBigDecimal));
    } catch (JIException e) {
      throw new SQLException(e);
    }
  }
View Full Code Here

  }

 
  public void setString(int paramInt, String paramString) throws SQLException {
    try {
      getOceStatement().setParameter(getPName(paramInt), new OCVariant(paramString));
    } catch (JIException e) {
      throw new SQLException(e);
    }
  }
View Full Code Here

  }

 
  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);
    }
  }
View Full Code Here

TOP

Related Classes of com.ipc.oce.OCVariant

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.