Share via


IBuiltInFunctionLookup Interface

Provides the ability to look up SQL Server built-in functions and system functions that start with two at signs (@@).

Namespace:  Microsoft.SqlServer.Management.SqlParser.MetadataProvider
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Public Interface IBuiltInFunctionLookup
'Usage
Dim instance As IBuiltInFunctionLookup
public interface IBuiltInFunctionLookup
public interface class IBuiltInFunctionLookup
type IBuiltInFunctionLookup =  interface end
public interface IBuiltInFunctionLookup

The IBuiltInFunctionLookup type exposes the following members.

Properties

  Name Description
Public property AllBuiltIns Gets a collection that contains all built-in functions and system functions that start with two at signs (@@).
Public property BuiltInFunctions Gets a collection that contains all SQL Server built-in functions.
Public property DateParts Gets a collection that contains all SQL Server built-in function date-part arguments.
Public property GlobalVariables Gets a collection that contains all SQL Server system functions that start with two at signs (@@).

Top

Methods

  Name Description
Public method GetMultiTypeBuiltInFunction Returns an IBuiltInFunction object that represents a built-in function that has a multitype return value (such as a CAST, CONVERT or IDENTITY function). The IBuiltInFunction object returns the specified system data type instead of the generic return type.

Top