Module eclipselink

Class ReplaceExpression

All Implemented Interfaces:
Expression

public final class ReplaceExpression extends AbstractTripleEncapsulatedExpression
The second and third arguments of the REPLACE function denote the pattern to replace and replacement string. These arguments are strings. The REPLACE function returns a string.
Jakarta Persistence 3.2:
BNF ::= REPLACE(string_expression, string_expression , string_expression)
Example: UPDATE Employee e SET e.firstName = REPLACE('TopLink Workbench', 'Top', 'Eclipse')
Author:
Radek Felcman