GetUnextendedName

Description

Gets the unextended display name of a specified database object.

This method is useful in a MultiSite environment. It parses an extended name and returns the unextended name. An extended name contains a site-specific extension that makes it unique among all names in a MultiSite environment. An unextended name is known to be unique only to its site. If the specified name is already an unextended name, then no error will occur, and you will just receive the same name. If the specified name is not a valid name, you will receive an empty string.

Syntax

VBScript


unextended_name = session.GetUnextendedName extended_name

Perl


$unextended_name = $session->GetUnextendedName(extended_name);
Identifier
Description
session
The Session object that represents the current database-access session.
extended_name
A String containing the extended name of a database object.
Return value
A String containing the unextended name or empty if the input name is not valid.