IsStringInCQDataCodePage
Description
Returns whether or not the characters in a given string are in the HCL Compass data code page.
This method takes a String argument and checks to see if the characters in the given String are in the HCL Compass data code page for the Session's schema-repository.
Note: This method
became available in version 2003.06.00.
Syntax
VBScript
adminSession.IsStringInCQDataCodePage
stringToCheck
Perl
$adminSession->IsStringInCQDataCodePage
($stringToCheck);
- Identifier
- Description
- adminSession
- The AdminSession object representing the current schema repository access session.
- stringToCheck
- A String that specifies what you are checking to see is in the HCL Compass data code page.
- Return value
- Returns True if the HCL Compass data code page contains a given String, False otherwise.
Examples
VBScript
IsInCodePage = adminSession.IsStringInCQDataCodePage stringToCheck
Perl
$isInCodePage = $adminSession->IsStringInCQDataCodePage($stringToCheck);