Skip to content

Commit 2b0aa9b

Browse files
authored
Update setting-the-connection-properties.md
1 parent 92cd5e1 commit 2b0aa9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/connect/jdbc/setting-the-connection-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ The following table lists all the currently available connection string properti
115115
| trustStoreType<br/><br/>String<br/><br/>JKS | Set this property to specify trust store type to be used for FIPS mode. <br/><br/>Possible values are either **PKCS12** or type defined by FIPS provider. |
116116
| useBulkCopyFor...<br/>BatchInsert<br/><br/>boolean<br/>["true" &#124; "false"]<br/><br/>false | (Version 9.2+) This connection property can be enabled to transparently use the Bulk Copy API when doing batch insert operations using `java.sql.PreparedStatement`. This feature potentially provides higher performance when enabled. <br/><br/>This feature is disabled by default. Set this property to "true" to enable this feature. <br/></br> **Important Note:** This feature only supports fully parameterized INSERT queries. If the INSERT queries are combined with other SQL queries, or contain data in values, execution falls back to the basic batch insert operation. <br/><br/> For more information about how to use this property, see [Using bulk copy API for batch insert operation](use-bulk-copy-api-batch-insert-operation.md)|
117117
| useDefaultGSSCredential<br/><br/>boolean<br/>["true" &#124; "false"]<br/><br/>false | (Version 12.6+) Flag to indicate whether the driver should create the GSSCredential on behalf of the user for using Native GSS-API for Kerberos authentication. |
118-
| bulkCopyForBatchInsertBatchSize<br/><br/>int<br/>[0..65535]<br/><br/>0 | (Version 12.10+) When using useBulkCopyForBatchInsert=true, this property specifies the batch size for bulk copy operations created from batch insert operations. For more information about the effects of this setting, see the `BatchSize` option in [SQLServerBulkCopyOptions](using-bulk-copy-with-the-jdbc-driver.md#sqlserverbulkcopyoptions). |
118+
| bulkCopyForBatchInsertBatchSize<br/><br/>int<br/><br/>0 | (Version 12.10+) When using useBulkCopyForBatchInsert=true, this property specifies the batch size for bulk copy operations created from batch insert operations. For more information about the effects of this setting, see the `BatchSize` option in [SQLServerBulkCopyOptions](using-bulk-copy-with-the-jdbc-driver.md#sqlserverbulkcopyoptions). |
119119
| bulkCopyForBatchInsertCheckConstraints<br/><br/>boolean<br/>["true" &#124; "false"]<br/><br/>false | (Version 12.10+) When using useBulkCopyForBatchInsert=true, setting this option to true enables check constraints while inserting data. Setting this option to false disables check constraints. For more information about the effects of this setting, see the `CheckConstraints` option in [SQLServerBulkCopyOptions](using-bulk-copy-with-the-jdbc-driver.md#sqlserverbulkcopyoptions). |
120120
| bulkCopyForBatchInsertFireTriggers<br/><br/>boolean<br/>["true" &#124; "false"]<br/><br/>false | (Version 12.10+) When using useBulkCopyForBatchInsert=true, setting this option to true enables the firing of insert triggers while inserting rows into the database. Setting this option to false disables insert triggers. For more information about the effects of this setting, see the `FireTriggers` option in [SQLServerBulkCopyOptions](using-bulk-copy-with-the-jdbc-driver.md#sqlserverbulkcopyoptions). |
121121
| bulkCopyForBatchInsertKeepIdentity<br/><br/>boolean<br/>["true" &#124; "false"]<br/><br/>false |(Version 12.10+) When using useBulkCopyForBatchInsert=true, setting this option to true enables preserves source identity values while inserting data. Setting the option to false allows identity values to be assigned by the destination. For more information about the effects of this setting, see the `KeepIdentity` option in [SQLServerBulkCopyOptions](using-bulk-copy-with-the-jdbc-driver.md#sqlserverbulkcopyoptions). |

0 commit comments

Comments
 (0)