GetPatchVersion

Description

Returns the current fix pack version of the product.

Syntaxe

Perl

$prodinfo->GetPatchVersion(); 
Identificateur
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the fix pack version, if any.

Exemple

Perl

use CQPerlExt;



my $cqobject = CQSession::Build();

my $prodinfo = $cqobject->GetProductInfo();

print "PatchVersion = '".$prodinfo->GetPatchVersion()."'\n";

CQSession::Unbuild($cqobject); 

Commentaires