OracleCommandBuilder.QuoteIdentifier Method
.NET Framework 2.0
Note: This method is new in the .NET Framework version 2.0.
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.
Namespace: System.Data.OracleClient
Assembly: System.Data.OracleClient (in system.data.oracleclient.dll)
Assembly: System.Data.OracleClient (in system.data.oracleclient.dll)
'Declaration Public Overrides Function QuoteIdentifier ( _ unquotedIdentifier As String _ ) As String 'Usage Dim instance As OracleCommandBuilder Dim unquotedIdentifier As String Dim returnValue As String returnValue = instance.QuoteIdentifier(unquotedIdentifier)
public String QuoteIdentifier ( String unquotedIdentifier )
public override function QuoteIdentifier ( unquotedIdentifier : String ) : String
Parameters
- unquotedIdentifier
The original unquoted identifier.
Return Value
The quoted version of the identifier. Embedded quotes within the identifier are properly escaped.Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Show: