GetSessionFeatureLevel

説明

現在コンピュータで実行している Rational® ClearQuest® クライアントのバージョン番号を取得します。

構文

VBScript

session.GetSessionFeatureLevel 

Perl

$session->GetSessionFeatureLevel(); 
識別子
説明
session
現在のデータベース アクセス セッションを表す Session オブジェクト。
戻り値
機能レベルを含む Long。

機能レベルは読み取り専用です。

VBScript

Set sessionObj = CreateObject("CLEARQUEST.SESSION")


sessionObj.UserLogon "admin", "", "SAMPL", AD_PRIVATE_SESSION, ""



Level = sessionObj.GetSessionFeatureLevel()

MsgBox (Level) 

Perl

use CQPerlExt;

#Start a Rational ClearQuest session

$Session = CQSession::Build();



$Session->UserLogon("admin","","SAMPL","");



$level = $Session->GetSessionFeatureLevel();

print "Level:$level¥n";

CQSession::Unbuild($Session); 

フィードバック