Package org.springframework.jdbc.core
Class SqlReturnUpdateCount
java.lang.Object
org.springframework.jdbc.core.SqlParameter
org.springframework.jdbc.core.SqlReturnUpdateCount
Represents a returned update count from a stored procedure call.
Returned update counts - like all stored procedure parameters - must have names.
- Author:
- Thomas Risberg
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
This implementation always returnsfalse
.boolean
This implementation always returnstrue
.Methods inherited from class org.springframework.jdbc.core.SqlParameter
getName, getScale, getSqlType, getTypeName, sqlTypesToAnonymousParameterList
-
Constructor Details
-
SqlReturnUpdateCount
Create a new SqlReturnUpdateCount.- Parameters:
name
- the name of the parameter, as used in input and output maps
-
-
Method Details
-
isInputValueProvided
public boolean isInputValueProvided()This implementation always returnsfalse
.- Overrides:
isInputValueProvided
in classSqlParameter
-
isResultsParameter
public boolean isResultsParameter()This implementation always returnstrue
.- Overrides:
isResultsParameter
in classSqlParameter
-