JANUS CHARSET: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
No edit summary
Line 8: Line 8:
<p class="syntax"> JANUS CHARSET character_set
<p class="syntax"> JANUS CHARSET character_set
</p>
</p>


Where the single parameter is optional:
Where the single parameter is optional:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>character_set</th>
<tr><th>character_set</th>
<td>A 1 - 30 name for the character set to be used. The default value is iso_1.
<td>A 1- through 30-character name for the character set to be used. The default value is iso_1.
</td></tr></table>
</td></tr></table>


<var>CHARSET</var> has no effect on the operation of any application in <var class="product">Model 204</var>. The name of the specified character set is simply forwarded to the target server for a ''[[Janus Open Client]]'' application. Because almost all SQL Server character set names are lower case, the character set specified after <var>CHARSET</var> will generally be translated to lower case. For example, specifying <code>CHARSET CP850</code> will actually request character set <code>cp850</code> from a target server. If an upper or mixed case character set name is required, simply place a plus sign (+) in front of the character set name. For example to specify character set <code>BIG</code> simply enter <code>CHARSET +BIG</code>. The character set specified on a <var>JANUS DEFINEREMOTE</var> command overrides the character set specified on a <var>JANUS DEFINE</var> command which overrides the character set specified on a JANUS CHARSET command. If the character set name is left blank, the JANUS CHARSET command will display the current character set name.
<var>CHARSET</var> has no effect on the operation of any application in <var class="product">Model 204</var>. The name of the specified character set is simply forwarded to the target server for a ''[[Janus Open Client]]'' application. Because almost all SQL Server character set names are lower case, the character set specified after <var>CHARSET</var> will generally be translated to lower case. For example, specifying <code>CHARSET CP850</code> will actually request character set <code>cp850</code> from a target server. If an upper or mixed case character set name is required, simply place a plus sign (+) in front of the character set name. For example to specify character set <code>BIG</code> simply enter <code>CHARSET +BIG</code>. The character set specified on a <var>JANUS DEFINEREMOTE</var> command overrides the character set specified on a <var>JANUS DEFINE</var> command which overrides the character set specified on a JANUS CHARSET command. If the character set name is left blank, the JANUS CHARSET command will display the current character set name.


See: [[List_of_Janus_commands|Janus command list]]
==See also==
<ul>
<li>[[List of Janus_commands]]
</ul>
 
[[Category:Janus commands|JANUS CHARSET]]
[[Category:Janus commands|JANUS CHARSET]]

Revision as of 18:42, 13 March 2013

Set default Janus character set for region

This subcommand sets a default character set for all Janus ports in the Model 204 region.

Syntax

JANUS CHARSET character_set

Where the single parameter is optional:

character_set A 1- through 30-character name for the character set to be used. The default value is iso_1.

CHARSET has no effect on the operation of any application in Model 204. The name of the specified character set is simply forwarded to the target server for a Janus Open Client application. Because almost all SQL Server character set names are lower case, the character set specified after CHARSET will generally be translated to lower case. For example, specifying CHARSET CP850 will actually request character set cp850 from a target server. If an upper or mixed case character set name is required, simply place a plus sign (+) in front of the character set name. For example to specify character set BIG simply enter CHARSET +BIG. The character set specified on a JANUS DEFINEREMOTE command overrides the character set specified on a JANUS DEFINE command which overrides the character set specified on a JANUS CHARSET command. If the character set name is left blank, the JANUS CHARSET command will display the current character set name.

See also