OleDbCommandBuilder.UnquoteIdentifier Method

Definition

Given a quoted identifier, returns the correct unquoted form of that identifier. This includes correctly un-escaping any embedded quotes in the identifier.

Overloads

UnquoteIdentifier(String)

Given a quoted identifier, returns the correct unquoted form of that identifier. This includes correctly un-escaping any embedded quotes in the identifier.

UnquoteIdentifier(String, OleDbConnection)

Given a quoted identifier, returns the correct unquoted form of that identifier. This includes correctly un-escaping any embedded quotes in the identifier.

UnquoteIdentifier(String)

Source:
OleDbCommandBuilder.cs
Source:
OleDbCommandBuilder.cs
Source:
OleDbCommandBuilder.cs

Given a quoted identifier, returns the correct unquoted form of that identifier. This includes correctly un-escaping any embedded quotes in the identifier.

C#
public override string UnquoteIdentifier(string quotedIdentifier);

Parameters

quotedIdentifier
String

The identifier that will have its embedded quotes removed.

Returns

The unquoted identifier, with embedded quotes correctly un-escaped.

See also

Applies to

.NET 10 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

UnquoteIdentifier(String, OleDbConnection)

Source:
OleDbCommandBuilder.cs
Source:
OleDbCommandBuilder.cs
Source:
OleDbCommandBuilder.cs

Given a quoted identifier, returns the correct unquoted form of that identifier. This includes correctly un-escaping any embedded quotes in the identifier.

C#
public string UnquoteIdentifier(string quotedIdentifier, System.Data.OleDb.OleDbConnection? connection);
C#
public string UnquoteIdentifier(string quotedIdentifier, System.Data.OleDb.OleDbConnection connection);

Parameters

quotedIdentifier
String

The identifier that will have its embedded quotes removed.

Returns

The unquoted identifier, with embedded quotes correctly un-escaped.

See also

Applies to

.NET 10 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)