GetClientCodePage

Description

Returns a String describing the client's code page (for example, "1252 (ANSI - Latin I)" or "20127 (US-ASCII)"). On the UNIX™ and Linux™ systems, this method returns the string, UNIX client and does not contain information about the actual settings.

This method does not require the Session to be logged in.

Note: This method became available in version 2003.06.00.

Syntax

VBScript


session.GetClientCodePage 

Perl


$session->GetClientCodePage(); 
Identifier
Description
session
The Session object that represents the current database-access session.
Return value
Returns a String describing the client's code page. On the UNIX and Linux systems, this method returns the string, UNIX client and does not contain information about the actual settings.

Examples

VBScript


myClientCP = session.GetClientCodePage 

Perl


$myClientCP = $session->GetClientCodePage();