Removes the qualifiers from a database object name.

Namespace:  DbNetLink.Data
Assembly:  DbNetLink.DbNetData (in DbNetLink.DbNetData.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public string UnqualifiedDbObjectName(
	string ObjectName
)
Visual Basic (Declaration)
Public Function UnqualifiedDbObjectName ( _
	ObjectName As String _
) As String
Visual C++
public:
String^ UnqualifiedDbObjectName(
	String^ ObjectName
)

Parameters

ObjectName
Type: System..::.String

The qualified name of the column, table, index etc

Return Value

The unqualified object name. For example for a MS SQL Server connection the name "[order details]" would become "order details".

See Also