GetPatchVersion
Description
Returns the current fix pack version of the product.
Syntax
Perl
$prodinfo->GetPatchVersion();
- Identifier
- Description
- prodinfo
- A CQProductInfo object.
- Return value
- A String containing the fix pack version, if any.
Example
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "PatchVersion = '".$prodinfo->GetPatchVersion()."'\n";
CQSession::Unbuild($cqobject);