Table of Contents

Class ObjectSchema.ExternalLanguage

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

sys.external_languages (Transact-SQL)

Applies to: √ SQL Server 2019 (15.x)

This catalog view provides a list of the external languages in the database. R and Python are reserved names and no external language can be created with those specific names.
## sys.external_languages
The catalog view sys.external_languages lists a row for each external language in the database.


See sys.external_languages.

[Table(Schema = "sys", Name = "external_languages", IsView = true)]
public class ObjectSchema.ExternalLanguage
Inheritance
ObjectSchema.ExternalLanguage
Extension Methods

Properties

CreateDate

Date and time of creation

[Column("create_date")]
[NotNull]
public object CreateDate { get; set; }

Property Value

object

ExternalLanguageID

ID of the external language

[Column("external_language_id")]
[NotNull]
public object ExternalLanguageID { get; set; }

Property Value

object

Language

Name of the external language. Is unique within the database. R and Python are reserved names per instance

[Column("language")]
[Nullable]
public object? Language { get; set; }

Property Value

object

PrincipalID

ID of the principal that owns this external library

[Column("principal_id")]
[Nullable]
public object? PrincipalID { get; set; }

Property Value

object