IsClientCodePageCompatibleWithCQDataCodePage

Description

Returns whether or not user database updates are allowed. Updates to the database are allowed even if the local character set is incompatible (HCL Compass only allows compatible characters to be stored in the database, and returns an exception if characters that are not in the HCL Compass data code page are attempted to be stored in the database). See About national language support for more information.

Syntax

VBScript


 adminSession.IsClientCodePageCompatibleWithCQDataCodePage 

 

Perl


 $adminSession->IsClientCodePageCompatibleWithCQDataCodePage(); 

 
Identifier
Description
adminSession
The AdminSession object representing the current schema repository access session.
Return value
Returns True if the client code page is compatible with the HCL Compass data code page, False otherwise.

Examples

VBScript


 isComp = adminSession.IsClientCodePageCompatibleWithCQDataCodePage 

 

Perl


 $isComp = $adminSession->IsClientCodePageCompatibleWithCQDataCodePage();