Java org.springframework.jdbc.core.metadata CallMetaDataProvider fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.jdbc.core.metadata CallMetaDataProvider fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.jdbc.core.metadata CallMetaDataProvider.

The text is from its open source code.

Implementation

org.springframework.jdbc.core.metadata.CallMetaDataProvider has the following implementations.
Click this link to see all its implementation.

Method

booleanbyPassReturnParameter(String parameterName)
Should we bypass the return parameter with the specified name.
SqlParametercreateDefaultInOutParameter(String parameterName, CallParameterMetaData meta)
Create a default inout parameter based on the provided meta-data.
SqlParametercreateDefaultInParameter(String parameterName, CallParameterMetaData meta)
Create a default in parameter based on the provided meta-data.
SqlParametercreateDefaultOutParameter(String parameterName, CallParameterMetaData meta)
Create a default out parameter based on the provided meta-data.
ListgetCallParameterMetaData()
Get the call parameter meta-data that is currently used.
ClassgetClass()
Returns the runtime class of this Object .
intgetRefCursorSqlType()
Get the java.sql.Types type for columns that return ResultSets as ref cursors if this feature is supported.
voidinitializeWithMetaData(DatabaseMetaData databaseMetaData)
Initialize using the provided DatabaseMetData.
voidinitializeWithProcedureColumnMetaData(DatabaseMetaData databaseMetaData, @Nullable String catalogName, @Nullable String schemaName, @Nullable String procedureName)
Initialize the database specific management of procedure column meta-data.
booleanisProcedureColumnMetaDataUsed()
Are we using the meta-data for the procedure columns?
booleanisRefCursorSupported()
Does this database support returning ResultSets as ref cursors to be retrieved with java.sql.CallableStatement#getObject(int) for the specified column.
booleanisReturnResultSetSupported()
Does this database support returning ResultSets that should be retrieved with the JDBC call: java.sql.Statement#getResultSet() ?
StringparameterNameToUse(@Nullable String parameterName)
Provide any modification of the column name passed in to match the meta-data currently used.