Skip to content

Commit e8451ff

Browse files
committed
Change dates, add TOC, correct mistakes and make changes according to feedback
1 parent 8ebba92 commit e8451ff

18 files changed

Lines changed: 81 additions & 70 deletions

docs/connect/jdbc/TOC.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
# [Compliance and Legal for the JDBC SQL Driver](compliance-and-legal-for-the-jdbc-sql-driver.md)
6464
## [JDBC 4.1 Compliance for the JDBC Driver](jdbc-4-1-compliance-for-the-jdbc-driver.md)
6565
## [JDBC 4.2 Compliance for the JDBC Driver](jdbc-4-2-compliance-for-the-jdbc-driver.md)
66+
## [JDBC 4.3 Compliance for the JDBC Driver](jdbc-4-3-compliance-for-the-jdbc-driver.md)
6667

6768
# [Programming Guide for JDBC SQL Driver](programming-guide-for-jdbc-sql-driver.md)
6869
## [Connecting to SQL Server with the JDBC Driver](connecting-to-sql-server-with-the-jdbc-driver.md)

docs/connect/jdbc/always-encrypted-api-reference-for-the-jdbc-driver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Always Encrypted API Reference for the JDBC Driver | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "11/10/2016"
4+
ms.date: "1/19/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""

docs/connect/jdbc/configuring-how-java-sql-time-values-are-sent-to-the-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Configuring How java.sql.Time Values are Sent to the Server | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "01/19/2017"
4+
ms.date: "01/19/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""
@@ -48,7 +48,7 @@ ms.workload: "Inactive"
4848

4949
Be aware that when sending java.sql.Time values into a parameter whose data type can also store the date, that default dates are different depending on whether the java.sql.Time value is sent as a **datetime** (1/1/1970) or **time** (1/1/1900) value. For more information about data conversions when sending data to a [!INCLUDE[ssNoVersion](../../includes/ssnoversion_md.md)], see [Using Date and Time Data](http://go.microsoft.com/fwlink/?LinkID=145211).
5050

51-
In [!INCLUDE[ssNoVersion](../../includes/ssnoversion_md.md)] JDBC Driver 3.0, **sendTimeAsDatetime** is true by default. Starting from release 6.4.0, **sendTimeAsDatetime** is false by default.
51+
In [!INCLUDE[ssNoVersion](../../includes/ssnoversion_md.md)] JDBC Driver 3.0, **sendTimeAsDatetime** is true by default. In a future release, the **sendTimeAsDatetime** connection property may be set to false by default.
5252

5353
To ensure that your application continues to work as expected regardless of the default value of the **sendTimeAsDatetime** connection property you can:
5454

docs/connect/jdbc/download-microsoft-jdbc-driver-for-sql-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Download Microsoft JDBC Driver for SQL Server | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "01/08/2018"
4+
ms.date: "01/19/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""

docs/connect/jdbc/fips-mode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ In order to run the JDBC Driver in FIPS-compliant mode, configure connection pro
9292
|TrustServerCertificate|boolean ["true / false"]|"false"|For FIPS we need to validate certificate chain, so we should use **"false"** value for this property. ||
9393
|trustStore|String|null|Your Java Keystore file path where you imported your certificate. If you install certificate on your system, then no need to pass anything. Driver uses cacerts or jssecacerts files.||
9494
|trustStorePassword|String|null|The password used to check the integrity of the trustStore data.||
95-
|fips|boolean ["true / false"]|"false"|For fips enabled JVM this property should be **true**|Added in 6.1.4||
96-
|fipsProvider|String|null|FIPS provider configured in JVM. For example, BCFIPS or SunPKCS11-NSS |Added in 6.1.2, removed in 6.4.0 - see the details [Here](https://github.com/Microsoft/mssql-jdbc/pull/460).|
97-
|trustStoreType|String|JKS|For FIPS mode set trust store type either PKCS12 or type defined by FIPS provider |Added in 6.1.2||
95+
|fips|boolean ["true / false"]|"false"|For fips enabled JVM this property should be **true**|Added in 6.1.4 (Stable release 6.2.2)||
96+
|fipsProvider|String|null|FIPS provider configured in JVM. For example, BCFIPS or SunPKCS11-NSS |Added in 6.1.2 (Stable release 6.2.2), deprecated in 6.4.0 - see the details [Here](https://github.com/Microsoft/mssql-jdbc/pull/460).|
97+
|trustStoreType|String|JKS|For FIPS mode set trust store type either PKCS12 or type defined by FIPS provider |Added in 6.1.2 (Stable release 6.2.2)||
9898

9999

100100

docs/connect/jdbc/reference/TOC.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,8 @@
487487
### [getSelectMethod Method (SQLServerDataSource)](getselectmethod-method-sqlserverdatasource.md)
488488
### [getSendStringParametersAsUnicode Method (SQLServerDataSource)](getsendstringparametersasunicode-method-sqlserverdatasource.md)
489489
### [getServerName Method (SQLServerDataSource)](getservername-method-sqlserverdatasource.md)
490+
### [getTrustManagerClass Method (SQLServerDataSource)](gettrustmanagerclass-method-sqlserverdatasource.md)
491+
### [getTrustManagerConstructorArg Method (SQLServerDataSource)](gettrustmanagerconstructorarg-method-sqlserverdatasource.md)
490492
### [getTrustServerCertificate Method (SQLServerDataSource)](gettrustservercertificate-method-sqlserverdatasource.md)
491493
### [getTrustStore Method (SQLServerDataSource)](gettruststore-method-sqlserverdatasource.md)
492494
### [getURL Method (SQLServerDataSource)](geturl-method-sqlserverdatasource.md)
@@ -518,6 +520,8 @@
518520
### [setSendStringParametersAsUnicode Method (SQLServerDataSource)](setsendstringparametersasunicode-method-sqlserverdatasource.md)
519521
### [setSendTimeAsDatetime Method (SQLServerDataSource)](setsendtimeasdatetime-method-sqlserverdatasource.md)
520522
### [setServerName Method (SQLServerDataSource)](setservername-method-sqlserverdatasource.md)
523+
### [setTrustManagerClass Method (SQLServerDataSource)](settrustmanagerclass-method-sqlserverdatasource.md)
524+
### [setTrustManagerConstructorArg Method (SQLServerDataSource)](settrustmanagerconstructorarg-method-sqlserverdatasource.md)
521525
### [setTrustServerCertificate Method (SQLServerDataSource)](settrustservercertificate-method-sqlserverdatasource.md)
522526
### [setTrustStore Method (SQLServerDataSource)](settruststore-method-sqlserverdatasource.md)
523527
### [setTrustStorePassword Method (SQLServerDataSource)](settruststorepassword-method-sqlserverdatasource.md)
@@ -545,6 +549,12 @@
545549
### [jdbcCompliant Method (SQLServerDriver)](jdbccompliant-method-sqlserverdriver.md)
546550
# [SQLServerException Class](sqlserverexception-class.md)
547551
## [SQLServerException Members](sqlserverexception-members.md)
552+
## [SQLServerException Constructors](sqlserverexception-constructors.md)
553+
### [SQLServerException Method (java.lang.Object, java.lang.String, java.lang.String, int, boolean) (SQLServerDriver)](sqlserverexception-constructor-object-string-string-int-boolean.md)
554+
### [SQLServerException Method (java.lang.Object, java.lang.String, java.lang.String, StreamError, boolean) (SQLServerDriver)](sqlserverexception-constructor-object-string-string-streamerror-boolean.md)
555+
### [SQLServerException Method (java.lang.String, SQLState, DriverError, java.lang.Throwable) (SQLServerDriver)](sqlserverexception-constructor-string-sqlstate-drivererror-throwable.md)
556+
### [SQLServerException Method (java.lang.String, java.lang.String, int, java.lang.Throwable) (SQLServerDriver)](sqlserverexception-constructor-string-string-int-throwable.md)
557+
### [SQLServerException Method (java.lang.String, java.lang.Throwable) (SQLServerDriver)](sqlserverexception-constructor-string-throwable.md)
548558
## [SQLServerException Methods](sqlserverexception-methods.md)
549559
# [SQLServerNClob Class](sqlservernclob-class.md)
550560
## [SQLServerNClob Members](sqlservernclob-members.md)

docs/connect/jdbc/reference/gettrustmanagerclass-method-sqlserverdatasource.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "getTrustManagerClass Method () | Microsoft Docs"
2+
title: "getTrustManagerClass Method (SQLServerDataSource) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/19/2018"
55
ms.prod: "sql-non-specified"
@@ -13,18 +13,18 @@ ms.technology:
1313
ms.tgt_pltfrm: ""
1414
ms.topic: "article"
1515
apiname:
16-
- "getTrustManagerClass Method ()"
16+
- "SQLServerDataSource.getTrustManagerClass"
1717
apilocation:
18-
- "getTrustManagerClass Method ()"
18+
- "sqljdbc.jar"
1919
apitype: "Assembly"
20-
ms.assetid: 8f5850e4-8627-49a8-ba0e-b1f4014322a5
21-
caps.latest.revision: 12
20+
ms.assetid:
21+
caps.latest.revision: 1
2222
author: "MightyPen"
2323
ms.author: "genemi"
2424
manager: "jhubbard"
2525
ms.workload: "Inactive"
2626
---
27-
# getTrustManagerClass Method ()
27+
# getTrustManagerClass Method (SQLServerDataSource)
2828
[!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)]
2929

3030
Returns the String value of the TrustManagerClass connection property.

docs/connect/jdbc/reference/gettrustmanagerconstructorarg-method-sqlserverdatasource.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "getTrustManagerConstructorArg Method () | Microsoft Docs"
2+
title: "getTrustManagerConstructorArg Method (SQLServerDataSource) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/19/2018"
55
ms.prod: "sql-non-specified"
@@ -13,18 +13,18 @@ ms.technology:
1313
ms.tgt_pltfrm: ""
1414
ms.topic: "article"
1515
apiname:
16-
- "getTrustManagerConstructorArg Method ()"
16+
- "SQLServerDataSource.getTrustManagerConstructorArg"
1717
apilocation:
18-
- "getTrustManagerConstructorArg Method ()"
18+
- "sqljdbc.jar"
1919
apitype: "Assembly"
20-
ms.assetid: 8f5850e4-8627-49a8-ba0e-b1f4014322a5
21-
caps.latest.revision: 12
20+
ms.assetid:
21+
caps.latest.revision: 1
2222
author: "MightyPen"
2323
ms.author: "genemi"
2424
manager: "jhubbard"
2525
ms.workload: "Inactive"
2626
---
27-
# getTrustManagerConstructorArg Method ()
27+
# getTrustManagerConstructorArg Method (SQLServerDataSource)
2828
[!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)]
2929

3030
Returns the String value of the TrustManagerConstructorArg connection property.

docs/connect/jdbc/reference/settrustmanagerclass-method-sqlserverdatasource.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "setTrustManagerClass Method (String) | Microsoft Docs"
2+
title: "setTrustManagerClass Method (SQLServerDataSource) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/19/2018"
55
ms.prod: "sql-non-specified"
@@ -13,18 +13,18 @@ ms.technology:
1313
ms.tgt_pltfrm: ""
1414
ms.topic: "article"
1515
apiname:
16-
- "setTrustManagerClass Method (String)"
16+
- "SQLServerDataSource.setTrustManagerClass"
1717
apilocation:
18-
- "setTrustManagerClass Method (String)"
18+
- "sqljdbc.jar"
1919
apitype: "Assembly"
20-
ms.assetid: bab5485d-4547-426c-adbe-44e2b5702d1d
21-
caps.latest.revision: 15
20+
ms.assetid:
21+
caps.latest.revision: 1
2222
author: "MightyPen"
2323
ms.author: "genemi"
2424
manager: "jhubbard"
2525
ms.workload: "Inactive"
2626
---
27-
# setTrustManagerClass Method (String)
27+
# setTrustManagerClass Method (SQLServerDataSource)
2828
[!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)]
2929

3030
Sets the String value of the TrustManagerClass connection property.

docs/connect/jdbc/reference/settrustmanagerconstructorarg-method-sqlserverdatasource.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "setTrustManagerConstructorArg Method (String) | Microsoft Docs"
2+
title: "setTrustManagerConstructorArg Method (SQLServerDataSource) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/19/2018"
55
ms.prod: "sql-non-specified"
@@ -13,18 +13,18 @@ ms.technology:
1313
ms.tgt_pltfrm: ""
1414
ms.topic: "article"
1515
apiname:
16-
- "setTrustManagerConstructorArg Method (String)"
16+
- "SQLServerDataSource.setTrustManagerConstructorArg"
1717
apilocation:
18-
- "setTrustManagerConstructorArg Method (String)"
18+
- "sqljdbc.jar"
1919
apitype: "Assembly"
20-
ms.assetid: bab5485d-4547-426c-adbe-44e2b5702d1d
21-
caps.latest.revision: 15
20+
ms.assetid:
21+
caps.latest.revision: 1
2222
author: "MightyPen"
2323
ms.author: "genemi"
2424
manager: "jhubbard"
2525
ms.workload: "Inactive"
2626
---
27-
# setTrustManagerConstructorArg Method (String)
27+
# setTrustManagerConstructorArg Method (SQLServerDataSource)
2828
[!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)]
2929

3030
Sets the String value of the TrustManagerConstructorArg connection property.

0 commit comments

Comments
 (0)