JDBC provides a way of smoothing out some of the differences in the way different DBMS vendors implement SQL. This is called escape syntax. Escape syntax signals that the JDBC driver, which is provided by a particular vendor, scans for any escape syntax and converts it into the code that the particular database understands. This makes escape syntax DBMS-independent.
A JDBC escape clause begins and ends with curly braces. A keyword always follows the opening curly brace:
{keyword }
The escape keyword for use in CallableStatements.
The escape keyword for date formats.
The keyword for specifying escape characters for LIKE clauses.
The escape keyword for scalar functions.
The escape keyword for outer joins.
The escape keyword for time formats.
The escape keyword for timestamp formats.