public class

SqlReturnUpdateCount

extends SqlParameter
java.lang.Object
   ↳ org.springframework.jdbc.core.SqlParameter
     ↳ org.springframework.jdbc.core.SqlReturnUpdateCount

Class Overview

Represents a returned update count from a stored procedure call.

Returned update counts - like all stored procedure parameters - must have names.

Summary

Public Constructors
SqlReturnUpdateCount(String name)
Create a new instance of the SqlReturnUpdateCount class.
Public Methods
boolean isInputValueProvided()
Return whether this parameter holds input values that should be set before execution even if they are null.
boolean isResultsParameter()
Return whether this parameter is an implicit return parameter used during the results preocessing of the CallableStatement.getMoreResults/getUpdateCount.
[Expand]
Inherited Methods
From class org.springframework.jdbc.core.SqlParameter
From class java.lang.Object

Public Constructors

public SqlReturnUpdateCount (String name)

Create a new instance of the SqlReturnUpdateCount class.

Parameters
name name of the parameter, as used in input and output maps

Public Methods

public boolean isInputValueProvided ()

Return whether this parameter holds input values that should be set before execution even if they are null.

This implementation always returns false.

public boolean isResultsParameter ()

Return whether this parameter is an implicit return parameter used during the results preocessing of the CallableStatement.getMoreResults/getUpdateCount.

This implementation always returns true.