Skip to content

Commit

Permalink
Update src/main/java/com/microsoft/sqlserver/jdbc/ISQLServerDataSourc…
Browse files Browse the repository at this point in the history
…e.java

Co-authored-by: David Engel <v-davidengel@microsoft.com>
  • Loading branch information
tkyc and David-Engel authored Nov 15, 2023
1 parent d41e1f8 commit ef0869e
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -613,8 +613,11 @@ public interface ISQLServerDataSource extends javax.sql.CommonDataSource {
* Sets whether or not sp_sproc_columns will be used for parameter name lookup.
*
* @param useFlexibleCallableStatements
* When set to true, sp_sproc_columns is not used for parameter name lookup
* in callable statements.
* When set to false, sp_sproc_columns is not used for parameter name lookup
* in callable statements. This eliminates a round trip to the server but imposes limitations
* on how parameters are set. When set to false, applications must either reference
* parameters by name or by index, not both. Parameters must also be set in the same
* order as the stored procedure definition.
*/
void setUseFlexibleCallableStatements(boolean useFlexibleCallableStatements);

Expand Down

0 comments on commit ef0869e

Please sign in to comment.