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.

Syntaxe

VBScript

unextended_name = session.GetUnextendedName extended_name

Perl

$unextended_name = $session->GetUnextendedName(extended_name);
Identificateur
Description
session
Objet Session représentant la session en cours d'accès à la base de données.
extended_name
A String containing the extended name of a database object.
Valeur renvoyée
A String containing the unextended name or empty if the input name is not valid.

Feedback