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.

Remarque : This method became available in version 2003.06.00.

Syntaxe

VBScript

session.GetClientCodePage 

Perl

$session->GetClientCodePage(); 
Identificateur
Description
session
Objet Session représentant la session en cours d'accès à la base de données.
Valeur renvoyée
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.

Exemples

VBScript

myClientCP = session.GetClientCodePage 

Perl

$myClientCP = $session->GetClientCodePage(); 

Commentaires en retour