OdbcCommandBuilder.UnquoteIdentifier Method

Definition

Given a quoted identifier, returns the correct unquoted form of that identifier, including correctly unescaping any embedded quotes in the identifier.

Overloads

UnquoteIdentifier(String)

Given a quoted identifier, returns the correct unquoted form of that identifier, including correctly unescaping any embedded quotes in the identifier.

UnquoteIdentifier(String, OdbcConnection)

Given a quoted identifier, returns the correct unquoted form of that identifier, including correctly unescaping any embedded quotes in the identifier.

UnquoteIdentifier(String)

Source:
OdbcCommandBuilder.cs
Source:
OdbcCommandBuilder.cs
Source:
OdbcCommandBuilder.cs

Given a quoted identifier, returns the correct unquoted form of that identifier, including correctly unescaping any embedded quotes in the identifier.

public:
 override System::String ^ UnquoteIdentifier(System::String ^ quotedIdentifier);
public override string UnquoteIdentifier (string quotedIdentifier);
override this.UnquoteIdentifier : string -> string
Public Overrides Function UnquoteIdentifier (quotedIdentifier As String) As String

Parameters

quotedIdentifier
String

The identifier that will have its embedded quotes removed.

Returns

The unquoted identifier, with embedded quotes correctly unescaped.

See also

Applies to

UnquoteIdentifier(String, OdbcConnection)

Source:
OdbcCommandBuilder.cs
Source:
OdbcCommandBuilder.cs
Source:
OdbcCommandBuilder.cs

Given a quoted identifier, returns the correct unquoted form of that identifier, including correctly unescaping any embedded quotes in the identifier.

public:
 System::String ^ UnquoteIdentifier(System::String ^ quotedIdentifier, System::Data::Odbc::OdbcConnection ^ connection);
public string UnquoteIdentifier (string quotedIdentifier, System.Data.Odbc.OdbcConnection connection);
public string UnquoteIdentifier (string quotedIdentifier, System.Data.Odbc.OdbcConnection? connection);
override this.UnquoteIdentifier : string * System.Data.Odbc.OdbcConnection -> string
Public Function UnquoteIdentifier (quotedIdentifier As String, connection As OdbcConnection) As String

Parameters

quotedIdentifier
String

The identifier that will have its embedded quotes removed.

connection
OdbcConnection

The OdbcConnection.

Returns

The unquoted identifier, with embedded quotes correctly unescaped.

See also

Applies to