DbIdToStringId

Description

Returns the string ID translated from database ID (DBID). For stateful records, the string ID is the display name (for example, SAMPL00001234).

The DBID is a unique number assigned to every record by IBM Rational ClearQuest.

Remarque : This method does not support stateless record types.
Remarque : This method became available in version 2002.05.00. In version 7.0.0.0 the limit on the number of records that can be stored increased so the range of DBIDs also increased. However, Rational ClearQuest clients earlier than version 7.0.0.0 cannot display records with database identifiers (DBIDs) higher than the former limit. For more information on DBIDs, see Utilisation d'enregistrements

Syntaxe

VBScript

session.DbIdToStringId db_id 

Perl

$session->DbIdToStringId(db_id); 
Identificateur
Description
session
Objet Session représentant la session en cours d'accès à la base de données.
db_id
A Long containing a record DBID.
Valeur de retour
Returns a String containing the string ID (display name) of the record.

Exemples

VBScript

id = session.DbIdToStringId "33554434" 

Perl

$id = $session->DbIdToStringId ("33554434"); 

Commentaires