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

Commit ab3eda2

Browse files
committed
Removed CTP/RC references from language extensions
1 parent 7b6815e commit ab3eda2

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

docs/language-extensions/language-extensions-overview.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ monikerRange: ">=sql-server-ver15||>=sql-server-linux-ver15||=sqlallproducts-all
1515

1616
Language Extensions is a feature of SQL Server used for executing external code. The relational data can be used in the external code using the [extensibility framework](concepts/extensibility-framework.md).
1717

18-
In SQL Server 2019 Release Candidate 1 (RC 1), Java is supported. The default Java runtime is Zulu Open JRE. You can also use another Java JRE or SDK.
18+
In SQL Server 2019, Java is supported. The default Java runtime is Zulu Open JRE. You can also use another Java JRE or SDK.
1919

2020
## What you can do with Language Extensions
2121

@@ -54,9 +54,7 @@ Execute Java code from within T-SQL script:
5454

5555
+ [Tutorial: Regular expressions with Java](tutorials/search-for-string-using-regular-expressions-in-java.md)
5656

57-
## Limitations in RC 1
58-
59-
SQL Server Language Extensions is currently in public preview. There are some limitations in RC 1:
57+
## Limitations
6058

6159
+ The number of values in input and output buffers cannot exceed `MAX_INT (2^31-1)` since that is the maximum number of elements that can be allocated in an array in Java.
6260

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ If you are not using a Java IDE, you can manually create a `.jar` file. For more
174174
175175
## Create external language
176176

177-
In CTP 3.0 and later, you need to create an external language in the database. The external language is a database scoped object, which means that external languages like Java need to be created for each database you want to use it in.
177+
You need to create an external language in the database. The external language is a database scoped object, which means that external languages like Java need to be created for each database you want to use it in.
178178

179179
### Create external language on Windows
180180

@@ -220,7 +220,7 @@ Use [CREATE EXTERNAL LIBRARY](https://docs.microsoft.com/sql/t-sql/statements/cr
220220

221221
In this sample, you will create two external libraries. One for the SDK and one for the RegEx Java code.
222222

223-
1. The SDK jar file **mssql-java-lang-extension.jar** is installed as part of SQL Server 2019 CTP 3.0 and later on both Windows and Linux.
223+
1. The SDK jar file **mssql-java-lang-extension.jar** is installed as part of SQL Server 2019 on both Windows and Linux.
224224

225225
+ Default installation path on Windows: **[instance installation home directory]\MSSQL\Binn\mssql-java-lang-extension.jar**
226226

0 commit comments

Comments
 (0)