Registers an embedded function for use in SQL statments. The function name should NOT include the leading lowercase 'fn' associated with embedded functions.


Namespace: NetQuarry
Assembly: EAP.Core (in EAP.Core.dll)

Syntax

Visual Basic (Declaration)
Public Sub RegisterEmbeddedFunction( _ 
   ByVal functionName As String,  _ 
   ByVal replacementValue As String,  _ 
   ByVal description As String _ 
) _
    Implements IAppContext.RegisterEmbeddedFunction
C#
public void RegisterEmbeddedFunction(
   string functionName,
   string replacementValue,
   string description
)
C++
public:
 void RegisterEmbeddedFunction(
   String functionName,
   String replacementValue,
   String description
) sealed 
J#
public void RegisterEmbeddedFunction(
   string functionName,
   string replacementValue,
   string description
)
JScript
public  function RegisterEmbeddedFunction(
   functionName : String,
   replacementValue : String,
   description : String
)

Parameters

functionName
The name of the function. The name should NOT include the leading 'fn.'
replacementValue
The replacement value.
description
The description of the function.

Implements

IAppContext.RegisterEmbeddedFunction

See Also