Description
Returns
the current fix pack version of the product.
Syntaxe
Perl
$prodinfo->GetPatchVersion();
- Identificateur
- Description
- prodinfo
- A CQProductInfo object.
- Valeur renvoyée
- 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);