|
|
|
@ -1,5 +1,5 @@ |
|
|
|
/* |
|
|
|
/* |
|
|
|
* Copyright 2002-2018 the original author or authors. |
|
|
|
* Copyright 2002-2024 the original author or authors. |
|
|
|
* |
|
|
|
* |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
@ -49,14 +49,14 @@ public interface SimpleJdbcCallOperations { |
|
|
|
SimpleJdbcCallOperations withFunctionName(String functionName); |
|
|
|
SimpleJdbcCallOperations withFunctionName(String functionName); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Optionally, specify the name of the schema that contins the stored procedure. |
|
|
|
* Optionally, specify the name of the schema that contains the stored procedure. |
|
|
|
* @param schemaName the name of the schema |
|
|
|
* @param schemaName the name of the schema |
|
|
|
* @return the instance of this SimpleJdbcCall |
|
|
|
* @return the instance of this SimpleJdbcCall |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
SimpleJdbcCallOperations withSchemaName(String schemaName); |
|
|
|
SimpleJdbcCallOperations withSchemaName(String schemaName); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Optionally, specify the name of the catalog that contins the stored procedure. |
|
|
|
* Optionally, specify the name of the catalog that contains the stored procedure. |
|
|
|
* <p>To provide consistency with the Oracle DatabaseMetaData, this is used to specify the |
|
|
|
* <p>To provide consistency with the Oracle DatabaseMetaData, this is used to specify the |
|
|
|
* package name if the procedure is declared as part of a package. |
|
|
|
* package name if the procedure is declared as part of a package. |
|
|
|
* @param catalogName the catalog or package name |
|
|
|
* @param catalogName the catalog or package name |
|
|
|
|