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.
[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
ExternalLanguageID
ID of the external language
[Column("external_language_id")]
[NotNull]
public object ExternalLanguageID { get; set; }
Property Value
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
PrincipalID
ID of the principal that owns this external library
[Column("principal_id")]
[Nullable]
public object? PrincipalID { get; set; }