Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit b707c67

Browse files
Removed jar download link
Removed jar download link to SDK and instead provided paths on Win and Linux where the jar is installed. (Under external libraries)
1 parent fba8b76 commit b707c67

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

docs/language-extensions/tutorials/search-for-string-using-regular-expressions-in-java.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: This tutorial shows you how to use SQL Server Language Extensions a
55
author: dphansen
66
ms.author: davidph
77
manager: cgronlun
8-
ms.date: 05/22/2019
8+
ms.date: 05/28/2019
99
ms.topic: conceptual
1010
ms.prod: sql
1111
ms.technology: language-extensions
@@ -221,13 +221,21 @@ Use [CREATE EXTERNAL LIBRARY](https://docs.microsoft.com/sql/t-sql/statements/cr
221221
222222
In this sample, you will create two external libraries. One for the SDK and one for the RegEx Java code.
223223
224-
1. Download the **mssql-java-lang-extension.jar** file from the [Microsoft Extensibility SDK for Java for Microsoft SQL Server](../how-to/extensibility-sdk-java-sql-server.md) .
224+
1. The SDK jar file **mssql-java-lang-extension.jar** is installed as part of SQL Server 2019 CTP 3.0 preview on both Windows and Linux.
225+
226+
+ Default installation path on Windows: **[instance installation home directory]\MSSQL\Binn\mssql-java-lang-extension.jar**
227+
228+
+ Default installation path on Linux: **/opt/mssql/lib/mssql-java-lang-extension.jar**
229+
230+
The code is also open sourced and can be found on the [SQL Server Language Extensions GitHub repository](https://github.com/microsoft/sql-server-language-extensions).
231+
232+
The following article provides more information about the [Microsoft Extensibility SDK for Java for Microsoft SQL Server](../how-to/extensibility-sdk-java-sql-server.md) .
225233
226234
2. Create an external library for the SDK.
227235
228236
```sql
229237
CREATE EXTERNAL LIBRARY sdk
230-
FROM (CONTENT = '<path>/mssql-java-lang-extension.jar')
238+
FROM (CONTENT = '<OS specific path from above>/mssql-java-lang-extension.jar')
231239
WITH (LANGUAGE = 'Java');
232240
GO
233241
```

0 commit comments

Comments
 (0)