com.buzzsurf.sql
Class InOutParameter
java.lang.Object
com.buzzsurf.sql.OutParameter
com.buzzsurf.sql.InOutParameter
public class InOutParameter
- extends OutParameter
An object that models a stored procedure INOUT parameter.
See com.buzzsurf.sql.StoredProcedure for usage information.
- Author:
- Paul Cowan (www.buzzsurf.com/sql)
- See Also:
StoredProcedure,
Types
|
Field Summary |
protected java.lang.Object |
inValue
|
|
Constructor Summary |
InOutParameter()
Empty constructor provided for convenience |
InOutParameter(int outSqlType,
java.lang.Object inValue)
Construct a stored procedure INOUT parameter of the specified type |
| Methods inherited from class com.buzzsurf.sql.OutParameter |
getBoolean, getByte, getBytes, getCalendar, getDate, getDouble, getFloat, getInt, getLong, getObject, getOutSqlType, getShort, getString, setCalendar, setOutSqlType |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
inValue
protected java.lang.Object inValue
InOutParameter
public InOutParameter()
- Empty constructor provided for convenience
InOutParameter
public InOutParameter(int outSqlType,
java.lang.Object inValue)
- Construct a stored procedure INOUT parameter of the specified type
- Parameters:
outSqlType - A java.sql.Type constant intinValue - The input parameter value
setInValue
public void setInValue(java.lang.Object inValue)
- Parameters:
inValue - The input parameter value
getInValue
public java.lang.Object getInValue()
- Returns:
- The input parameter value