Lines Matching defs:scale

751              * value for scale.  javax.sql.rowset.RowSetMetaDataImpl will throw an exception
754 int scale = rsmd.getScale(col);
755 if (scale < 0) {
756 scale = 0;
758 md.setScale(col, scale);
2030 * that does not take a scale parameter and returns a value with full
2036 * @param scale the number of digits to the right of the decimal point in the
2045 public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
2065 retVal = bDecimal.setScale(scale);
2635 * @param scale the number of digits to the right of the decimal point
2636 * @return a java.math.BugDecimal object with <code><i>scale</i></code>
2649 public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException {
2650 return getBigDecimal(getColIdxByName(columnName), scale);
4850 * <code>Object</code> value. The <code>scale</code> parameter indicates
4868 * @param scale the number of digits to the right of the decimal point (for
4875 public void updateObject(int columnIndex, Object x, int scale) throws SQLException {
4883 ((java.math.BigDecimal)x).setScale(scale);
5382 * <code>Object</code> value. The <code>scale</code> parameter
5399 * @param scale the number of digits to the right of the decimal point (for
5406 public void updateObject(String columnName, Object x, int scale) throws SQLException {
5407 updateObject(getColIdxByName(columnName), x, scale);
9568 * sent to the database. The scale argument may further qualify this type.
9569 * @param scale for java.sql.Types.DECIMAL or java.sql.Types.NUMERIC types,
9585 public void setObject(String parameterName, Object x, int targetSqlType, int scale)
9595 * above, except that it assumes a scale of zero.