This class implements expression generators for all collations. More...
Static Public Member Functions | |
_.Library.String | CollateCodeGen (_.Library.String val, _.Library.String transSpec, _.Library.String length) |
This class implements expression generators for all collations. More... | |
_.Library.String | CollationExpression (_.Library.String collation, _, _.Library.String val, _.Library.String parms) |
This method generates the appropriate collation expression as requested by the parameters. More... | |
This class implements expression generators for all collations.
A collation expression is used by code generators to tranform logical data values into values used by indices.
For example, you may wish that a query by name finds the same results for both "ELVIS" and "elvis". Using a case-insensitive index transformation, such as String, will accomplish this. If you want an exact match, use Exact.
Collations are specified via a property's COLLATION parameter. Every datatype has a default COLLATION value, which matches one of the methods of the <nobr>Collation</nobr> class. The COLLATION parameter can be overwritten by an individual property or by a specific index definition.
Note that changing a property's COLLATION value will corrupt any index values currently stored for that property and will require you to manually repopulate the index.
|
static |
This class implements expression generators for all collations.
A collation expression is used by code generators to tranform logical data values into values used by indices.
For example, you may wish that a query by name finds the same results for both "ELVIS" and "elvis". Using a case-insensitive index transformation, such as String, will accomplish this. If you want an exact match, use Exact.
Collations are specified via a property's COLLATION parameter. Every datatype has a default COLLATION value, which matches one of the methods of the <nobr>Collation</nobr> class. The COLLATION parameter can be overwritten by an individual property or by a specific index definition.
Note that changing a property's COLLATION value will corrupt any index values currently stored for that property and will require you to manually repopulate the index.
Generate collation expression for COLLATE collation
|
static |
This method generates the appropriate collation expression as requested by the parameters.
collation = <p><b>AlphaUp</b> Converts a logical value to upper case, strips all punctuation and white space (except for ',' and '?'). <p>This method is included for compatability with earlier products; use <b>String</b> instead. <p><b>Exact</b> Performs no transformation; the index value is exactly the logical value. <p><b>Minus</b> Prepends a minus ('-') sign to the logical value. <p>This method is included for compatability with earlier products; you should not need it in new applications. <p><b>MVR</b> MULTI VALUE Collation <p><b>Plus</b> Prepends a plus ('+') sign to the logical value. <p>This method is included for compatability with earlier products; you should not need it in new applications. <p><b>Space</b> Prepends a space (' ') character to the logical value. <p>This method is included for compatability with earlier products; you should not need it in new applications. <p><b>SqlString</b> Prepends a space to force string collation and strips trailing whitespace. <p>This method is used to insure that strings are collated case-sensitively and that numeric string values are collated correctly. <p><b>SqlUpper</b> Converts a logical value to upper case, strips trailing whitespace and prepends a space to force string collation. <p>This collation is used to insure that strings are collated case-insensitively and that numeric string values are collated correctly. <p><b>String</b> Converts a logical value to upper case, strips all punctuation and white space (except for ','). <p><b>Truncate</b> Performs no transformation; the index value is exactly the logical value. However, the value will be truncated to the length specified by the optional length argument. Truncate with no length is the same as Exact. <p><b>Upper</b> Converts a logical value to upper case without removing any characters. <p>%val the expression being collated <p>parms collation parameters as expected by collation