Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/com/microsoft/sqlserver/jdbc/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ static BigDecimal readBigDecimal(byte valueBytes[],
String name = "";
String value = "";
StringBuilder builder;

if (!tmpUrl.startsWith(sPrefix))
return null;

Expand Down Expand Up @@ -911,7 +911,7 @@ else if (("" + value).contains("E")) {
case TIME:
case DATETIMEOFFSET:
return ((null == scale) ? TDS.MAX_FRACTIONAL_SECONDS_SCALE : scale);

case CLOB:
return ((null == value) ? 0 : (DataTypes.NTEXT_MAX_CHARS * 2));

Expand Down Expand Up @@ -953,7 +953,7 @@ static synchronized boolean checkIfNeedNewAccessToken(SQLServerConnection connec
}

static final boolean use42Wrapper;

static {
boolean supportJDBC42 = true;
try {
Expand Down
Loading