spring-framework / org.springframework.jdbc.core / SqlReturnUpdateCount

SqlReturnUpdateCount

open class SqlReturnUpdateCount : SqlParameter

Represents a returned update count from a stored procedure call.

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

Author
Thomas Risberg

Constructors

<init>

SqlReturnUpdateCount(name: String)

Create a new instance of the SqlReturnUpdateCount class.

Functions

isInputValueProvided

open fun isInputValueProvided(): Boolean

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

This implementation always returns false.

isResultsParameter

open fun isResultsParameter(): Boolean

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

This implementation always returns true.