We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81e8c4d commit 5959f2fCopy full SHA for 5959f2f
src/main/java/com/microsoft/sqlserver/jdbc/dtv.java
@@ -2064,7 +2064,7 @@ else if (type.isBinary()) {
2064
// SSType (i.e. VARCHAR vs. TEXT/VARCHAR(max)) is based on the exact length of
2065
// the MBCS value (in bytes).
2066
// If useBulkCopyForBatchInsert is true, conversion to byte array is not done due to performance
2067
- else if ((con.getUseBulkCopyForBatchInsert() == false) && null != collation && (JDBCType.CHAR == type || JDBCType.VARCHAR == type
+ else if (!con.getUseBulkCopyForBatchInsert() && null != collation && (JDBCType.CHAR == type || JDBCType.VARCHAR == type
2068
|| JDBCType.LONGVARCHAR == type || JDBCType.CLOB == type)) {
2069
byte[] nativeEncoding = null;
2070
0 commit comments