/**
* @function setString
* @param index int
* @param value String
* @throws SQLException
*/
public void setString(int index,String value) throws SQLException {
prepstmt.setString(index, value);
}
/**
* @function setInt
* @param index int
* @param value int
* @throws SQLException
*/
public void setInt(int index,int value) throws SQLException {
prepstmt.setInt(index,value);
}
/**
* @function setBoolean
* @param index int
* @param value boolean
* @throws SQLException
*/
public void setBoolean(int index,boolean value) throws SQLException {
prepstmt.setBoolean(index,value);
}
/**
* @function setDate
* @param index int
* @param value Date
* @throws SQLException
*/
public void setDate(int index,Date value) throws SQLException {
prepstmt.setDate(index,value);
}
/**
* @function setLong
* @param index int
* @param value long
* @throws SQLException
*/
public void setLong(int index,long value) throws SQLException {
prepstmt.setLong(index,value);
}
/**
* @function setFloat
* @param index int
* @param value float
* @throws SQLException
*/
public void setFloat(int index,float value) throws SQLException {
prepstmt.setFloat(index,value);
}
/**
* @function setBytes
* @param index int
* @param value byte[]
* @throws SQLException
*/
public void setBytes(int index,byte[] value) throws SQLException{
prepstmt.setBytes(index,value);
}
/**
* @function setBinaryStream
* @param index int
* @param value InputStream
* @param len int
* @throws SQLException
*/
public void setBinaryStream(int index,InputStream value,int len) throws SQLException{
prepstmt.setBinaryStream(index,value,len);
}
/**
* @function setTimestamp
* @param index int
* @param timestamp Timestamp
* @throws SQLException
*/
public void setTimestamp(int index,Timestamp timestamp) throws SQLException {
prepstmt.setTimestamp(index, timestamp);
}