dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteConnection Class / IsFunctionRegistered Method / IsFunctionRegistered(SQLiteFunction) Method
The function to check.

In This Topic
    IsFunctionRegistered(SQLiteFunction) Method
    In This Topic
    Checks whether the specified function is registered in the connection as SQLite user-defined function.
    Syntax
    'Declaration
     
    Public Overloads Function IsFunctionRegistered( _
       ByVal function As SQLiteFunction _
    ) As Boolean
    public bool IsFunctionRegistered( 
       SQLiteFunction function
    )

    Parameters

    function
    The function to check.

    Return Value

    true, if the specified function is registered in the SQLite connection; otherwise, false.
    See Also