VistaDB 6
VistaDB.Provider Namespace / VistaDBCommandBuilder Class / UnquoteIdentifier Method
The identifier that will have its embedded quotes removed.The identifier that will have its embedded quotes removed.


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

    Parameters

    quotedIdentifier
    The identifier that will have its embedded quotes removed.The identifier that will have its embedded quotes removed.

    Return Value

    The unquoted identifier, with embedded quotes properly un-escaped.The unquoted identifier, with embedded quotes properly un-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