Package org.apache.derby.impl.tools.ij
Class ijVectorResult
- java.lang.Object
-
- org.apache.derby.impl.tools.ij.ijResultImpl
-
- org.apache.derby.impl.tools.ij.ijVectorResult
-
- All Implemented Interfaces:
ijResult
class ijVectorResult extends ijResultImpl
This is an impl for a simple Vector of objects.
-
-
Constructor Summary
Constructors Constructor Description ijVectorResult(java.lang.Object value, java.sql.SQLWarning w)
Initialize a new vector containing only one object.ijVectorResult(java.util.Vector<java.lang.Object> v, java.sql.SQLWarning w)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearSQLWarnings()
java.sql.SQLWarning
getSQLWarnings()
java.util.Vector
getVector()
boolean
isVector()
-
Methods inherited from class org.apache.derby.impl.tools.ij.ijResultImpl
closeStatement, getColumnDisplayList, getColumnWidthList, getConnection, getException, getMultipleResultSets, getNextRowOfResultSet, getResultSet, getStatement, getUpdateCount, hasWarnings, isConnection, isException, isMulti, isMultipleResultSetResult, isNextRowOfResultSet, isResultSet, isStatement, isUpdateCount, toString
-
-
-
-
Method Detail
-
isVector
public boolean isVector()
- Specified by:
isVector
in interfaceijResult
- Overrides:
isVector
in classijResultImpl
-
getVector
public java.util.Vector getVector()
- Specified by:
getVector
in interfaceijResult
- Overrides:
getVector
in classijResultImpl
-
getSQLWarnings
public java.sql.SQLWarning getSQLWarnings()
- Specified by:
getSQLWarnings
in interfaceijResult
- Specified by:
getSQLWarnings
in classijResultImpl
-
clearSQLWarnings
public void clearSQLWarnings()
- Specified by:
clearSQLWarnings
in interfaceijResult
- Specified by:
clearSQLWarnings
in classijResultImpl
-
-