|
class | connectivity::file::OOp_Upper |
| UCASE(str) UPPER(str) Returns the string str with all characters changed to uppercase according to the current character set mapping (the default is ISO-8859-1 Latin1): More...
|
|
class | connectivity::file::OOp_Lower |
| LCASE(str) LOWER(str) Returns the string str with all characters changed to lowercase according to the current character set mapping (the default is ISO-8859-1 Latin1): More...
|
|
class | connectivity::file::OOp_Ascii |
| ASCII(str) Returns the ASCII code value of the leftmost character of the string str. More...
|
|
class | connectivity::file::OOp_CharLength |
| LENGTH(str) OCTET_LENGTH(str) CHAR_LENGTH(str) CHARACTER_LENGTH(str) Returns the length of the string str: More...
|
|
class | connectivity::file::OOp_Char |
| CHAR(N,...) CHAR() interprets the arguments as integers and returns a string consisting of the characters given by the ASCII code values of those integers. More...
|
|
class | connectivity::file::OOp_Concat |
| CONCAT(str1,str2,...) Returns the string that results from concatenating the arguments. More...
|
|
class | connectivity::file::OOp_Locate |
| LOCATE(substr,str) POSITION(substr IN str) Returns the position of the first occurrence of substring substr in string str. More...
|
|
class | connectivity::file::OOp_SubString |
| SUBSTRING(str,pos) SUBSTRING(str FROM pos) Returns a substring from string str starting at position pos: More...
|
|
class | connectivity::file::OOp_LTrim |
| LTRIM(str) Returns the string str with leading space characters removed: More...
|
|
class | connectivity::file::OOp_RTrim |
| RTRIM(str) Returns the string str with trailing space characters removed: More...
|
|
class | connectivity::file::OOp_Space |
| SPACE(N) Returns a string consisting of N space characters: More...
|
|
class | connectivity::file::OOp_Replace |
| REPLACE(str,from_str,to_str) Returns the string str with all occurrences of the string from_str replaced by the string to_str: More...
|
|
class | connectivity::file::OOp_Repeat |
| REPEAT(str,count) Returns a string consisting of the string str repeated count times. More...
|
|
class | connectivity::file::OOp_Insert |
| INSERT(str,pos,len,newstr) Returns the string str, with the substring beginning at position pos and len characters long replaced by the string newstr: More...
|
|
class | connectivity::file::OOp_Left |
| LEFT(str,len) Returns the leftmost len characters from the string str: More...
|
|
class | connectivity::file::OOp_Right |
| RIGHT(str,len) Returns the rightmost len characters from the string str: More...
|
|