VistaDB 6
VistaDB.Provider Namespace / VistaDBCommandBuilder Class / QuoteIdentifier Method
The original unquoted identifier.The original unquoted identifier.


In This Topic
    QuoteIdentifier Method
    In This Topic
    Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier, including properly escaping any embedded quotes in the identifier. Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier, including properly escaping any embedded quotes in the identifier.
    Syntax
    'Declaration
     
    
    Public Overrides NotOverridable Function QuoteIdentifier( _
       ByVal unquotedIdentifier As System.String _
    ) As System.String
    'Usage
     
    
    Dim instance As VistaDBCommandBuilder
    Dim unquotedIdentifier As System.String
    Dim value As System.String
     
    value = instance.QuoteIdentifier(unquotedIdentifier)
    public override System.string QuoteIdentifier( 
       System.string unquotedIdentifier
    )

    Parameters

    unquotedIdentifier
    The original unquoted identifier.The original unquoted identifier.

    Return Value

    The quoted version of the identifier. Embedded quotes within the identifier are properly escaped.The quoted version of the identifier. Embedded quotes within the identifier are properly escaped.
    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