1.1.1

Table Of Contents
Syntax
LOCALIZEDDISPLAY { on | off }
Description
Species whether to display locale-sensitive data (such as dates) in the native format for the sqlf locale. The
sqlf locale is the same as the Java system locale.
Note: NUMERIC and DECIMAL values are not localized when the J2ME/CDC/Foundation Prole is
used, because of platform limitations.
Example
The following demonstrates LocalizedDisplay in an English locale:
sqlf(PEERCLIENT)> VALUES CURRENT_DATE;
1
----------
2011-05-16
1 row selected
sqlf(PEERCLIENT)> localizeddisplay on;
sqlf(PEERCLIENT)> VALUES CURRENT_DATE;
1
------------------
May 16, 2011
1 row selected
MaximumDisplayWidth
Sets the largest display width for columns to the specied value.
Syntax
MAXIMUMDISPLAYWIDTH
integer_value
Description
Sets the largest display width for columns to the specied value. You generally use this command to increase
the default value in order to display large blocks of text.
Example
sqlf(PEERCLIENT)> maximumdisplaywidth 4;
sqlf(PEERCLIENT)> VALUES 'NOW IS THE TIME!';
1
----
NOW&
1 row selected
sqlf(PEERCLIENT)> maximumdisplaywidth 30;
sqlf(PEERCLIENT)> VALUES 'NOW IS THE TIME!';
vFabric SQLFire User's Guide450
vFabric SQLFire Reference