Lines Matching refs:columnIndex

488      * @param columnIndex the first column is <code>1</code>, the second
497 public void updateInt(int columnIndex , int x) throws SQLException {
503 bool = p.evaluate(Integer.valueOf(x),columnIndex);
511 super.updateInt(columnIndex,x);
555 * @param columnIndex the first column is <code>1</code>, the second
564 public void updateBoolean(int columnIndex, boolean x) throws SQLException {
570 bool = p.evaluate(Boolean.valueOf(x) , columnIndex);
578 super.updateBoolean(columnIndex,x);
624 * @param columnIndex the first column is <code>1</code>, the second
633 public void updateByte(int columnIndex , byte x) throws SQLException {
638 bool = p.evaluate(Byte.valueOf(x),columnIndex);
646 super.updateByte(columnIndex,x);
692 * @param columnIndex the first column is <code>1</code>, the second
701 public void updateShort( int columnIndex , short x) throws SQLException {
707 bool = p.evaluate(Short.valueOf(x), columnIndex);
715 super.updateShort(columnIndex,x);
760 * @param columnIndex the first column is <code>1</code>, the second
769 public void updateLong(int columnIndex , long x) throws SQLException {
775 bool = p.evaluate(Long.valueOf(x), columnIndex);
783 super.updateLong(columnIndex,x);
827 * @param columnIndex the first column is <code>1</code>, the second
836 public void updateFloat(int columnIndex , float x) throws SQLException {
842 bool = p.evaluate(Float.valueOf(x), columnIndex);
850 super.updateFloat(columnIndex,x);
894 * @param columnIndex the first column is <code>1</code>, the second
903 public void updateDouble(int columnIndex , double x) throws SQLException {
909 bool = p.evaluate(Double.valueOf(x) , columnIndex);
917 super.updateDouble(columnIndex,x);
961 * @param columnIndex the first column is <code>1</code>, the second
970 public void updateBigDecimal(int columnIndex , BigDecimal x) throws SQLException {
976 bool = p.evaluate(x,columnIndex);
984 super.updateBigDecimal(columnIndex,x);
1031 * @param columnIndex the first column is <code>1</code>, the second
1040 public void updateString(int columnIndex , String x) throws SQLException {
1046 bool = p.evaluate(x,columnIndex);
1054 super.updateString(columnIndex,x);
1098 * @param columnIndex the first column is <code>1</code>, the second
1107 public void updateBytes(int columnIndex , byte []x) throws SQLException {
1122 bool = p.evaluate(val,columnIndex);
1130 super.updateBytes(columnIndex,x);
1174 * @param columnIndex the first column is <code>1</code>, the second
1184 public void updateDate(int columnIndex , java.sql.Date x) throws SQLException {
1190 bool = p.evaluate(x,columnIndex);
1198 super.updateDate(columnIndex,x);
1244 * @param columnIndex the first column is <code>1</code>, the second
1254 public void updateTime(int columnIndex , Time x) throws SQLException {
1260 bool = p.evaluate(x, columnIndex);
1268 super.updateTime(columnIndex,x);
1314 * @param columnIndex the first column is <code>1</code>, the second
1325 public void updateTimestamp(int columnIndex , Timestamp x) throws SQLException {
1331 bool = p.evaluate(x,columnIndex);
1339 super.updateTimestamp(columnIndex,x);
1388 * @param columnIndex the first column is <code>1</code>, the second
1395 public void updateAsciiStream(int columnIndex , java.io.InputStream x ,int length) throws SQLException {
1401 bool = p.evaluate(x,columnIndex);
1409 super.updateAsciiStream(columnIndex,x,length);
1450 * @param columnIndex the first column is <code>1</code>, the second
1464 public void updateCharacterStream(int columnIndex , java.io.Reader x , int length) throws SQLException {
1470 bool = p.evaluate(x,columnIndex);
1478 super.updateCharacterStream(columnIndex,x,length);
1526 * @param columnIndex the first column is <code>1</code>, the second
1538 public void updateBinaryStream(int columnIndex , java.io.InputStream x , int length) throws SQLException {
1544 bool = p.evaluate(x,columnIndex);
1552 super.updateBinaryStream(columnIndex,x,length);
1600 * @param columnIndex the first column is <code>1</code>, the second
1609 public void updateObject(int columnIndex , Object x) throws SQLException {
1615 bool = p.evaluate(x,columnIndex);
1623 super.updateObject(columnIndex,x);
1670 * @param columnIndex the first column is <code>1</code>, the second
1681 public void updateObject(int columnIndex , Object x , int scale) throws SQLException {
1687 bool = p.evaluate(x,columnIndex);
1695 super.updateObject(columnIndex,x,scale);