VistaDB 6
VistaDB.Entity Namespace / VistaDBProviderManifest Class / SupportsEscapingLikeArgument Method
If the provider supports escaping, the character that would be used as the escape character.


In This Topic
    SupportsEscapingLikeArgument Method
    In This Topic
    Indicates if the provider supports escaping strings to be used as patterns in a Like expression.
    Syntax
    'Declaration
     
    
    <System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", 
       "CA1021:AvoidOutParameters", 
       MessageId="0#")>
    Public Function SupportsEscapingLikeArgument( _
       ByRef escapeCharacter As System.Char _
    ) As System.Boolean
    'Usage
     
    
    Dim instance As VistaDBProviderManifest
    Dim escapeCharacter As System.Char
    Dim value As System.Boolean
     
    value = instance.SupportsEscapingLikeArgument(escapeCharacter)
    [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", 
       "CA1021:AvoidOutParameters", 
       MessageId="0#")]
    public System.bool SupportsEscapingLikeArgument( 
       out System.char escapeCharacter
    )

    Parameters

    escapeCharacter
    If the provider supports escaping, the character that would be used as the escape character.

    Return Value

    True if this provider supports escaping strings to be used as patterns in a Like expression; otherwise, false.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also