Java Code Examples for java.sql.CallableStatement#getBigDecimal()
The following examples show how to use
java.sql.CallableStatement#getBigDecimal() .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: spliceengine File: BigDecimalHandler.java License: GNU Affero General Public License v3.0 | 6 votes |
/** This method is a wrapper for the CallableStatement method getBigDecimal(int parameterIndex). * The wrapper method needs the parameterType as an input since ParameterMetaData is not available in JSR169. * * @param cs CallableStatement * @param parameterIndex Parameter Index * @param parameterType Parameter Type * @return String value of getXXX(parameterIndex)method on the CallableStatement * @throws SQLException */ public static String getBigDecimalString(CallableStatement cs, int parameterIndex, int parameterType) throws SQLException{ String bigDecimalString = null; switch(representation){ case BIGDECIMAL_REPRESENTATION: //Call toString() only for non-null values, else return null if(cs.getBigDecimal(parameterIndex) != null) bigDecimalString = cs.getBigDecimal(parameterIndex).toString(); break; case STRING_REPRESENTATION: bigDecimalString = cs.getString(parameterIndex); if((bigDecimalString != null) && !canConvertToDecimal(parameterType)) throw new SQLException("Invalid data conversion. Method not called."); break; default: new Exception("Failed: Invalid Big Decimal representation").printStackTrace(); } return bigDecimalString; }
Example 2
Source Project: spliceengine File: BigDecimalHandler.java License: GNU Affero General Public License v3.0 | 6 votes |
/** This method is a wrapper for the CallableStatement method getBigDecimal(int parameterIndex). * The wrapper method needs the parameterType as an input since ParameterMetaData is not available in JSR169. * * @param cs CallableStatement * @param parameterIndex Parameter Index * @param parameterType Parameter Type * @return String value of getXXX(parameterIndex)method on the CallableStatement * @throws SQLException */ public static String getBigDecimalString(CallableStatement cs, int parameterIndex, int parameterType) throws SQLException{ String bigDecimalString = null; switch(representation){ case BIGDECIMAL_REPRESENTATION: //Call toString() only for non-null values, else return null if(cs.getBigDecimal(parameterIndex) != null) bigDecimalString = cs.getBigDecimal(parameterIndex).toString(); break; case STRING_REPRESENTATION: bigDecimalString = cs.getString(parameterIndex); if((bigDecimalString != null) && !canConvertToDecimal(parameterType)) throw new SQLException("Invalid data conversion. Method not called."); break; default: new Exception("Failed: Invalid Big Decimal representation").printStackTrace(); } return bigDecimalString; }
Example 3
Source Project: gemfirexd-oss File: BigDecimalHandler.java License: Apache License 2.0 | 6 votes |
/** This method is a wrapper for the CallableStatement method getBigDecimal(int parameterIndex). * The wrapper method needs the parameterType as an input since ParameterMetaData is not available in JSR169. * * @param cs CallableStatement * @param parameterIndex Parameter Index * @param parameterType Parameter Type * @return String value of getXXX(parameterIndex)method on the CallableStatement * @throws SQLException */ public static String getBigDecimalString(CallableStatement cs, int parameterIndex, int parameterType) throws SQLException{ String bigDecimalString = null; switch(representation){ case BIGDECIMAL_REPRESENTATION: //Call toString() only for non-null values, else return null if(cs.getBigDecimal(parameterIndex) != null) bigDecimalString = cs.getBigDecimal(parameterIndex).toString(); break; case STRING_REPRESENTATION: bigDecimalString = cs.getString(parameterIndex); if((bigDecimalString != null) && !canConvertToDecimal(parameterType)) throw new SQLException("Invalid data conversion. Method not called."); break; default: new Exception("Failed: Invalid Big Decimal representation").printStackTrace(); } return bigDecimalString; }
Example 4
Source Project: gemfirexd-oss File: BigDecimalHandler.java License: Apache License 2.0 | 6 votes |
/** This method is a wrapper for the CallableStatement method getBigDecimal(int parameterIndex). * The wrapper method needs the parameterType as an input since ParameterMetaData is not available in JSR169. * * @param cs CallableStatement * @param parameterIndex Parameter Index * @param parameterType Parameter Type * @return String value of getXXX(parameterIndex)method on the CallableStatement * @throws SQLException */ public static String getBigDecimalString(CallableStatement cs, int parameterIndex, int parameterType) throws SQLException{ String bigDecimalString = null; switch(representation){ case BIGDECIMAL_REPRESENTATION: //Call toString() only for non-null values, else return null if(cs.getBigDecimal(parameterIndex) != null) bigDecimalString = cs.getBigDecimal(parameterIndex).toString(); break; case STRING_REPRESENTATION: bigDecimalString = cs.getString(parameterIndex); if((bigDecimalString != null) && !canConvertToDecimal(parameterType)) throw new SQLException("Invalid data conversion. Method not called."); break; default: new Exception("Failed: Invalid Big Decimal representation").printStackTrace(); } return bigDecimalString; }
Example 5
Source Project: gemfirexd-oss File: BigDecimalHandler.java License: Apache License 2.0 | 6 votes |
/** This method is a wrapper for the CallableStatement method getBigDecimal(int parameterIndex). * The wrapper method needs the parameterType as an input since ParameterMetaData is not available in JSR169. * * @param cs CallableStatement * @param parameterIndex Parameter Index * @param parameterType Parameter Type * @return String value of getXXX(parameterIndex)method on the CallableStatement * @throws SQLException */ public static String getBigDecimalString(CallableStatement cs, int parameterIndex, int parameterType) throws SQLException{ String bigDecimalString = null; switch(representation){ case BIGDECIMAL_REPRESENTATION: //Call toString() only for non-null values, else return null if(cs.getBigDecimal(parameterIndex) != null) bigDecimalString = cs.getBigDecimal(parameterIndex).toString(); break; case STRING_REPRESENTATION: bigDecimalString = cs.getString(parameterIndex); if((bigDecimalString != null) && !canConvertToDecimal(parameterType)) throw new SQLException("Invalid data conversion. Method not called."); break; default: new Exception("Failed: Invalid Big Decimal representation").printStackTrace(); } return bigDecimalString; }
Example 6
Source Project: gemfirexd-oss File: BigDecimalHandler.java License: Apache License 2.0 | 6 votes |
/** This method is a wrapper for the CallableStatement method getBigDecimal(int parameterIndex). * The wrapper method needs the parameterType as an input since ParameterMetaData is not available in JSR169. * * @param cs CallableStatement * @param parameterIndex Parameter Index * @param parameterType Parameter Type * @return String value of getXXX(parameterIndex)method on the CallableStatement * @throws SQLException */ public static String getBigDecimalString(CallableStatement cs, int parameterIndex, int parameterType) throws SQLException{ String bigDecimalString = null; switch(representation){ case BIGDECIMAL_REPRESENTATION: //Call toString() only for non-null values, else return null if(cs.getBigDecimal(parameterIndex) != null) bigDecimalString = cs.getBigDecimal(parameterIndex).toString(); break; case STRING_REPRESENTATION: bigDecimalString = cs.getString(parameterIndex); if((bigDecimalString != null) && !canConvertToDecimal(parameterType)) throw new SQLException("Invalid data conversion. Method not called."); break; default: new Exception("Failed: Invalid Big Decimal representation").printStackTrace(); } return bigDecimalString; }
Example 7
Source Project: uavstack File: DAOFactory.java License: Apache License 2.0 | 5 votes |
public Object getResult(CallableStatement cs, int columnIndex) throws SQLException { Object bigdec = cs.getBigDecimal(columnIndex); if (cs.wasNull()) { return null; } else { return bigdec; } }
Example 8
Source Project: gemfirexd-oss File: TestInOutParamsProcedure.java License: Apache License 2.0 | 5 votes |
@Override protected ResultSet[] getOutputValues(CallableStatement cs, Object[] inOut) throws SQLException { // TODO Auto-generated method stub ResultSet[] rs = getOutputResultset(cs, getOutputResultSetCount()); inOut[0] = cs.getBigDecimal(2); inOut[1] = new Integer(cs.getInt(3)); return rs; }
Example 9
Source Project: gemfirexd-oss File: TestInOutParamsProcedure.java License: Apache License 2.0 | 5 votes |
@Override protected ResultSet[] getOutputValues(CallableStatement cs, Object[] inOut) throws SQLException { // TODO Auto-generated method stub ResultSet[] rs = getOutputResultset(cs, getOutputResultSetCount()); inOut[0] = cs.getBigDecimal(2); inOut[1] = new Integer(cs.getInt(3)); return rs; }
Example 10
Source Project: openbd-core File: preparedData.java License: GNU General Public License v3.0 | 5 votes |
private static double getBigDecimalAsDouble(CallableStatement CallStatmt, boolean useNamedParameters, String paramName, int ColIndex) throws SQLException { // The PointBase driver will throw an exception if getDouble() // is called for these types so we need to call getBigDecimal() instead. BigDecimal bd; if (useNamedParameters) bd = CallStatmt.getBigDecimal(paramName); else bd = CallStatmt.getBigDecimal(ColIndex); if (bd == null) return 0; return bd.doubleValue(); }
Example 11
Source Project: CloverETL-Engine File: AbstractCopySQLData.java License: GNU Lesser General Public License v2.1 | 5 votes |
@Override public void setJetel(CallableStatement statement) throws SQLException { BigDecimal i = statement.getBigDecimal(fieldSQL); if (statement.wasNull()) { ((DecimalDataField) field).setValue((Object)null); } else { ((DecimalDataField) field).setValue(new HugeDecimal(i, Integer.parseInt(field.getMetadata().getProperty(DataFieldMetadata.LENGTH_ATTR)), Integer.parseInt(field.getMetadata().getProperty(DataFieldMetadata.SCALE_ATTR)), false)); } }
Example 12
Source Project: sinavi-jfw File: BigIntegerTypeHandler.java License: Apache License 2.0 | 5 votes |
/** * {@inheritDoc} */ @Override public BigInteger getNullableResult(CallableStatement cs, int columnIndex) throws SQLException { BigDecimal b = cs.getBigDecimal(columnIndex); return b != null ? TypeConverters.convert(b, BigInteger.class) : null; }
Example 13
Source Project: micro-integrator File: SQLQuery.java License: Apache License 2.0 | 4 votes |
private ParamValue getOutparameterValue(CallableStatement cs, String type, int ordinal) throws DataServiceFault { try { Object elementValue; if (type.equals(DBConstants.DataTypes.STRING)) { elementValue = cs.getString(ordinal); return new ParamValue(elementValue == null ? null : elementValue.toString()); } else if (type.equals(DBConstants.DataTypes.DOUBLE)) { elementValue = cs.getDouble(ordinal); return new ParamValue(elementValue == null ? null : ConverterUtil.convertToString((Double) elementValue)); } else if (type.equals(DBConstants.DataTypes.BIGINT)) { elementValue = cs.getLong(ordinal); return new ParamValue(elementValue == null ? null : ConverterUtil.convertToString((Long) elementValue)); } else if (type.equals(DBConstants.DataTypes.INTEGER)) { elementValue = cs.getInt(ordinal); return new ParamValue(elementValue == null ? null : ConverterUtil.convertToString((Integer) elementValue)); } else if (type.equals(DBConstants.DataTypes.TIME)) { elementValue = cs.getTime(ordinal); return new ParamValue(elementValue == null ? null : this.convertToTimeString((Time) elementValue)); } else if (type.equals(DBConstants.DataTypes.DATE)) { elementValue = cs.getDate(ordinal); return new ParamValue(elementValue == null ? null : ConverterUtil.convertToString((Date) elementValue)); } else if (type.equals(DBConstants.DataTypes.TIMESTAMP)) { if (timeConvertEnabled) { elementValue = cs.getTimestamp(ordinal, calendar); } else { elementValue = cs.getTimestamp(ordinal); } return new ParamValue(elementValue == null ? null : this.convertToTimestampString((Timestamp) elementValue)); } else if (type.equals(DBConstants.DataTypes.BLOB)) { elementValue = cs.getBlob(ordinal); return new ParamValue(elementValue == null ? null : this.getBase64StringFromInputStream(((Blob) elementValue) .getBinaryStream())); } else if (type.equals(DBConstants.DataTypes.CLOB)) { elementValue = cs.getClob(ordinal); return new ParamValue(elementValue == null ? null : deriveValueFromClob((Clob) elementValue)); } else if (type.equals(DBConstants.DataTypes.STRUCT)) { elementValue = cs.getObject(ordinal); return new ParamValue(elementValue == null ? null : (Struct) elementValue); } else if (type.equals(DBConstants.DataTypes.ARRAY)) { Array dataArray = cs.getArray(ordinal); ParamValue paramValue = new ParamValue(ParamValue.PARAM_VALUE_ARRAY); if (dataArray != null) { this.processSQLArray(dataArray, paramValue); } return paramValue; } else if (type.equals(DBConstants.DataTypes.NUMERIC)) { elementValue = cs.getBigDecimal(ordinal); return new ParamValue(elementValue == null ? null : ConverterUtil.convertToString((BigDecimal) elementValue)); } else if (type.equals(DBConstants.DataTypes.BIT)) { elementValue = cs.getBoolean(ordinal); return new ParamValue(elementValue == null ? null : ConverterUtil.convertToString((Boolean) elementValue)); } else if (type.equals(DBConstants.DataTypes.TINYINT)) { elementValue = cs.getByte(ordinal); return new ParamValue(elementValue == null ? null : ConverterUtil.convertToString((Byte) elementValue)); } else if (type.equals(DBConstants.DataTypes.SMALLINT)) { elementValue = cs.getShort(ordinal); return new ParamValue(elementValue == null ? null : ConverterUtil.convertToString((Short) elementValue)); } else if (type.equals(DBConstants.DataTypes.REAL)) { elementValue = cs.getFloat(ordinal); return new ParamValue(elementValue == null ? null : ConverterUtil.convertToString((Float) elementValue)); } else if (type.equals(DBConstants.DataTypes.BINARY)) { elementValue = cs.getBlob(ordinal); return new ParamValue(elementValue == null ? null : this.getBase64StringFromInputStream(((Blob) elementValue) .getBinaryStream())); } else { throw new DataServiceFault("Unsupported data type: " + type); } } catch (SQLException e) { throw new DataServiceFault(e, "Error in getting sql output parameter values."); } }
Example 14
Source Project: aceql-http File: ServerCallableUtil.java License: GNU Lesser General Public License v2.1 | 4 votes |
/** * Returns the value of the OUT parameter for a CallableStatement using parameter name. * @param callableStatement * @param outParameterName * @param paramType * @return * @throws SQLException */ public static String callableStatementGetStringValue(CallableStatement callableStatement, String outParameterName, String paramType) throws SQLException { String outParamValue = null; if (paramType.equalsIgnoreCase(AceQLTypes.CHAR) || paramType.equalsIgnoreCase(AceQLTypes.CHARACTER) || paramType.equalsIgnoreCase(AceQLTypes.VARCHAR)) { outParamValue = callableStatement.getString(outParameterName); } else if (paramType.equalsIgnoreCase(AceQLTypes.DECIMAL) || paramType.equalsIgnoreCase(AceQLTypes.NUMERIC)) { outParamValue = "" + callableStatement.getBigDecimal(outParameterName); } else if (paramType.equalsIgnoreCase(AceQLTypes.BIT)) { outParamValue = "" + callableStatement.getBoolean(outParameterName); } else if (paramType.equalsIgnoreCase(AceQLTypes.TINYINT) || paramType.equalsIgnoreCase(AceQLTypes.SMALLINT) || paramType.equalsIgnoreCase(AceQLTypes.INTEGER)) { outParamValue = "" + callableStatement.getInt(outParameterName); } // BIGINT Long // REAL Float // FLOAT Double // DOUBLE PRECISION Double else if (paramType.equalsIgnoreCase(AceQLTypes.BIGINT)) { outParamValue = "" + callableStatement.getLong(outParameterName); } else if (paramType.equalsIgnoreCase(AceQLTypes.REAL)) { outParamValue = "" + callableStatement.getFloat(outParameterName); } else if (paramType.equalsIgnoreCase(AceQLTypes.FLOAT) || paramType.equalsIgnoreCase(AceQLTypes.DOUBLE_PRECISION)) { outParamValue = "" + callableStatement.getDouble(outParameterName); } // DATE java.sql.Date // TIME java.sql.Time // TIMESTAMP java.sql.Timestamp else if (paramType.equalsIgnoreCase(AceQLTypes.DATE)) { outParamValue = "" + callableStatement.getDate(outParameterName); } else if (paramType.equalsIgnoreCase(AceQLTypes.TIME)) { outParamValue = "" + callableStatement.getTime(outParameterName); } else if (paramType.equalsIgnoreCase(AceQLTypes.TIMESTAMP)) { outParamValue = "" + callableStatement.getTimestamp(outParameterName); } else if (paramType.equalsIgnoreCase(AceQLTypes.URL)) { outParamValue = "" + callableStatement.getURL(outParameterName); } else { throw new IllegalArgumentException( "Invalid OUT parameter type: " + paramType + " for parameter index " + outParameterName + "."); } return outParamValue; }
Example 15
Source Project: mybatis File: BigIntegerTypeHandler.java License: Apache License 2.0 | 4 votes |
@Override public BigInteger getNullableResult(CallableStatement cs, int columnIndex) throws SQLException { BigDecimal bigDecimal = cs.getBigDecimal(columnIndex); return bigDecimal == null ? null : bigDecimal.toBigInteger(); }
Example 16
Source Project: mybaties File: BigDecimalTypeHandler.java License: Apache License 2.0 | 4 votes |
@Override public BigDecimal getNullableResult(CallableStatement cs, int columnIndex) throws SQLException { return cs.getBigDecimal(columnIndex); }
Example 17
Source Project: mybaties File: BigIntegerTypeHandler.java License: Apache License 2.0 | 4 votes |
@Override public BigInteger getNullableResult(CallableStatement cs, int columnIndex) throws SQLException { BigDecimal bigDecimal = cs.getBigDecimal(columnIndex); return bigDecimal == null ? null : bigDecimal.toBigInteger(); }
Example 18
Source Project: hasor File: InnerCallableStatementGetter.java License: Apache License 2.0 | 4 votes |
public static Object getValue(final CallableStatement cs, final int index, Class<?> requiredType) throws SQLException { Object value = null; boolean wasNullCheck = false; if (requiredType == null) { return cs.getObject(index); } requiredType = primitiveToWrapper(requiredType); // Explicitly extract typed value, as far as possible. if (String.class.equals(requiredType)) { value = cs.getString(index); } else if (Integer.class.equals(requiredType)) { value = cs.getInt(index); wasNullCheck = true; } else if (Double.class.equals(requiredType)) { value = cs.getDouble(index); wasNullCheck = true; } else if (Boolean.class.equals(requiredType)) { value = cs.getBoolean(index) ? Boolean.TRUE : Boolean.FALSE; wasNullCheck = true; } else if (java.sql.Date.class.equals(requiredType)) { value = cs.getDate(index); } else if (java.sql.Time.class.equals(requiredType)) { value = cs.getTime(index); } else if (java.sql.Timestamp.class.equals(requiredType)) { value = cs.getTimestamp(index); } else if (java.util.Date.class.equals(requiredType)) { value = new java.util.Date(cs.getTimestamp(index).getTime()); } else if (Byte.class.equals(requiredType)) { value = cs.getByte(index); wasNullCheck = true; } else if (Short.class.equals(requiredType)) { value = cs.getShort(index); wasNullCheck = true; } else if (Long.class.equals(requiredType)) { value = cs.getLong(index); wasNullCheck = true; } else if (Float.class.equals(requiredType)) { value = cs.getFloat(index); wasNullCheck = true; } else if (Number.class.equals(requiredType)) { value = cs.getDouble(index); wasNullCheck = true; } else if (byte[].class.equals(requiredType)) { value = cs.getBytes(index); } else if (java.math.BigDecimal.class.equals(requiredType)) { value = cs.getBigDecimal(index); } else if (java.sql.Blob.class.equals(requiredType)) { value = cs.getBlob(index); } else if (java.sql.Clob.class.equals(requiredType)) { value = cs.getClob(index); } else if (java.net.URL.class.equals(requiredType)) { value = cs.getURL(index); } else { // Some unknown type desired -> rely on getObject. value = cs.getObject(index); } // Perform was-null check if demanded (for results that the JDBC driver returns as primitives). if (wasNullCheck && value != null && cs.wasNull()) { value = null; } return value; }
Example 19
Source Project: CloverETL-Engine File: AbstractCopySQLData.java License: GNU Lesser General Public License v2.1 | 4 votes |
@Override public Object getDbValue(CallableStatement statement) throws SQLException { BigDecimal i = statement.getBigDecimal(fieldSQL); return statement.wasNull() ? null : i; }
Example 20
Source Project: mybatis File: BigDecimalTypeHandler.java License: Apache License 2.0 | 4 votes |
@Override public BigDecimal getNullableResult(CallableStatement cs, int columnIndex) throws SQLException { return cs.getBigDecimal(columnIndex); }