spring-framework / org.springframework.jdbc.core.metadata / CallMetaDataProvider / initializeWithProcedureColumnMetaData

initializeWithProcedureColumnMetaData

abstract fun initializeWithProcedureColumnMetaData(databaseMetaData: DatabaseMetaData, @Nullable catalogName: String, @Nullable schemaName: String, @Nullable procedureName: String): Unit

Initialize the database specific management of procedure column meta data. This is only called for databases that are supported. This initialization can be turned off by specifying that column meta data should not be used.

Parameters

databaseMetaData - used to retrieve database specific information

catalogName - name of catalog to use (or null if none)

schemaName - name of schema name to use (or null if none)

procedureName - name of the stored procedure

Exceptions

SQLException - in case of initialization failure

See Also
org.springframework.jdbc.core.simple.SimpleJdbcCall#withoutProcedureColumnMetaDataAccess()