LowerCaseString Property

DTS Programming

DTS Programming

LowerCaseString Property

The LowerCaseString property specifies or returns a value indicating whether the alphabetical characters in the source column string copied by custom transformations are converted to lowercase characters.

Applies To
DataPumpTransformMidString Object DataPumpTransformTrimString Object
Syntax

transerver.LowerCaseString [= logical]

Part Description
transerver Expression that evaluates to a transformation object from the Applies To list
logical Boolean that specifies whether the alpha characters in the source string are converted to uppercase

Data Type

Boolean

Modifiable

Read/write

Prototype (C/C++)

HRESULT LowerCaseString(VARIANT_BOOL* pRetVal);

HRESULT LowerCaseString(VARIANT_BOOL pRetVal);

Remarks

The default is FALSE.

The property also can be referenced through the TransformServerProperties collection with the following code:

Set transprops = transform.TransformServerProperties
transprops("LowerCaseString") [= logical]

See Also

DataPumpTransformLowerString Object

UpperCaseString Property