📄 sscallablestatement.java
字号:
MutableNumeric obj = getValue(i).getNumeric();
wasNull = obj == null;
if(wasNull) return null;
return obj.toBigDecimal();
}catch(Exception e){
throw Utils.createSQLException( e );
}
}
public Object getObject(int i, Map map) throws SQLException {
/**@todo: Implement this java.sql.CallableStatement method*/
throw new java.lang.UnsupportedOperationException("Method getObject() not yet implemented.");
}
public Ref getRef(int i) throws SQLException {
/**@todo: Implement this java.sql.CallableStatement method*/
throw new java.lang.UnsupportedOperationException("Method getRef() not yet implemented.");
}
public Blob getBlob(int i) throws SQLException {
/**@todo: Implement this java.sql.CallableStatement method*/
throw new java.lang.UnsupportedOperationException("Method getBlob() not yet implemented.");
}
public Clob getClob(int i) throws SQLException {
/**@todo: Implement this java.sql.CallableStatement method*/
throw new java.lang.UnsupportedOperationException("Method getClob() not yet implemented.");
}
public Array getArray(int i) throws SQLException {
/**@todo: Implement this java.sql.CallableStatement method*/
throw new java.lang.UnsupportedOperationException("Method getArray() not yet implemented.");
}
public Date getDate(int i, Calendar cal) throws SQLException {
/**@todo: Implement this java.sql.CallableStatement method*/
throw new java.lang.UnsupportedOperationException("Method getDate() not yet implemented.");
}
public Time getTime(int i, Calendar cal) throws SQLException {
/**@todo: Implement this java.sql.CallableStatement method*/
throw new java.lang.UnsupportedOperationException("Method getTime() not yet implemented.");
}
public Timestamp getTimestamp(int i, Calendar cal) throws SQLException {
/**@todo: Implement this java.sql.CallableStatement method*/
throw new java.lang.UnsupportedOperationException("Method getTimestamp() not yet implemented.");
}
public void registerOutParameter(int i, int sqlType, String typeName) throws SQLException {
/**@todo: Implement this java.sql.CallableStatement method*/
throw new java.lang.UnsupportedOperationException("Method registerOutParameter() not yet implemented.");
}
public void registerOutParameter(String parameterName, int sqlType) throws SQLException {
registerOutParameter( findParameter( parameterName ), sqlType );
}
public void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException {
registerOutParameter( findParameter( parameterName ), sqlType, scale );
}
public void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException {
registerOutParameter( findParameter( parameterName ), sqlType, typeName );
}
public URL getURL(int parameterIndex) throws SQLException {
/**@todo: Implement this java.sql.CallableStatement method*/
throw new java.lang.UnsupportedOperationException("Method getURL() not yet implemented.");
}
public void setURL(String parameterName, URL x) throws SQLException {
setURL( findParameter( parameterName ), x );
}
public void setNull(String parameterName, int sqlType) throws SQLException {
setNull( findParameter( parameterName ), sqlType );
}
public void setBoolean(String parameterName, boolean x) throws SQLException {
setBoolean( findParameter( parameterName ), x );
}
public void setByte(String parameterName, byte x) throws SQLException {
setByte( findParameter( parameterName ), x );
}
public void setShort(String parameterName, short x) throws SQLException {
setShort( findParameter( parameterName ), x );
}
public void setInt(String parameterName, int x) throws SQLException {
setInt( findParameter( parameterName ), x );
}
public void setLong(String parameterName, long x) throws SQLException {
setLong( findParameter( parameterName ), x );
}
public void setFloat(String parameterName, float x) throws SQLException {
setFloat( findParameter( parameterName ), x );
}
public void setDouble(String parameterName, double x) throws SQLException {
setDouble( findParameter( parameterName ), x );
}
public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException {
setBigDecimal( findParameter( parameterName ), x );
}
public void setString(String parameterName, String x) throws SQLException {
setString( findParameter( parameterName ), x );
}
public void setBytes(String parameterName, byte[] x) throws SQLException {
setBytes( findParameter( parameterName ), x );
}
public void setDate(String parameterName, Date x) throws SQLException {
setDate( findParameter( parameterName ), x );
}
public void setTime(String parameterName, Time x) throws SQLException {
setTime( findParameter( parameterName ), x );
}
public void setTimestamp(String parameterName, Timestamp x) throws SQLException {
setTimestamp( findParameter( parameterName ), x );
}
public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException {
setAsciiStream( findParameter( parameterName ), x, length );
}
public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException {
setBinaryStream( findParameter( parameterName ), x, length );
}
public void setObject(String parameterName, Object x, int sqlType, int scale) throws SQLException {
setObject( findParameter( parameterName ), x, sqlType, scale );
}
public void setObject(String parameterName, Object x, int sqlType) throws SQLException {
setObject( findParameter( parameterName ), x, sqlType );
}
public void setObject(String parameterName, Object x) throws SQLException {
setObject( findParameter( parameterName ), x );
}
public void setCharacterStream(String parameterName, Reader x, int length) throws SQLException {
setCharacterStream( findParameter( parameterName ), x, length );
}
public void setDate(String parameterName, Date x, Calendar cal) throws SQLException {
setDate( findParameter( parameterName ), x, cal );
}
public void setTime(String parameterName, Time x, Calendar cal) throws SQLException {
setTime( findParameter( parameterName ), x, cal );
}
public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException {
setTimestamp( findParameter( parameterName ), x, cal );
}
public void setNull(String parameterName, int sqlType, String typeName) throws SQLException {
setNull( findParameter( parameterName ), sqlType, typeName );
}
public String getString(String parameterName) throws SQLException {
return getString( findParameter( parameterName ) );
}
public boolean getBoolean(String parameterName) throws SQLException {
return getBoolean( findParameter( parameterName ) );
}
public byte getByte(String parameterName) throws SQLException {
return getByte( findParameter( parameterName ) );
}
public short getShort(String parameterName) throws SQLException {
return getShort( findParameter( parameterName ) );
}
public int getInt(String parameterName) throws SQLException {
return getInt( findParameter( parameterName ) );
}
public long getLong(String parameterName) throws SQLException {
return getLong( findParameter( parameterName ) );
}
public float getFloat(String parameterName) throws SQLException {
return getFloat( findParameter( parameterName ) );
}
public double getDouble(String parameterName) throws SQLException {
return getDouble( findParameter( parameterName ) );
}
public byte[] getBytes(String parameterName) throws SQLException {
return getBytes( findParameter( parameterName ) );
}
public Date getDate(String parameterName) throws SQLException {
return getDate( findParameter( parameterName ) );
}
public Time getTime(String parameterName) throws SQLException {
return getTime( findParameter( parameterName ) );
}
public Timestamp getTimestamp(String parameterName) throws SQLException {
return getTimestamp( findParameter( parameterName ) );
}
public Object getObject(String parameterName) throws SQLException {
return getObject( findParameter( parameterName ) );
}
public BigDecimal getBigDecimal(String parameterName) throws SQLException {
return getBigDecimal( findParameter( parameterName ) );
}
public Object getObject(String parameterName, Map map) throws SQLException {
return getObject( findParameter( parameterName ), map );
}
public Ref getRef(String parameterName) throws SQLException {
return getRef( findParameter( parameterName ) );
}
public Blob getBlob(String parameterName) throws SQLException {
return getBlob( findParameter( parameterName ) );
}
public Clob getClob(String parameterName) throws SQLException {
return getClob( findParameter( parameterName ) );
}
public Array getArray(String parameterName) throws SQLException {
return getArray( findParameter( parameterName ) );
}
public Date getDate(String parameterName, Calendar cal) throws SQLException {
return getDate( findParameter( parameterName ), cal );
}
public Time getTime(String parameterName, Calendar cal) throws SQLException {
return getTime( findParameter( parameterName ), cal );
}
public Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException {
return getTimestamp( findParameter( parameterName ), cal );
}
public URL getURL(String parameterName) throws SQLException {
return getURL( findParameter( parameterName ) );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -