Use eclipselink.jdbc.parameter-delimiter
to specify a custom parameter binding character (instead of the default hash # character).
Values
Table 4-19 describes this query hint's values.
Examples
Example 4-38 Using jdbc.parameter-delimiter in a JPA Query
import org.eclipse.persistence.config.HintValues; import org.eclipse.persistence.config.QueryHints; query.setHint("eclipselink.PARAMETER_DELIMITER", ",");
Example 4-39 Using jdbc.parameter-delimiter in a @QueryHint Annotation
import org.eclipse.persistence.config.HintValues; import org.eclipse.persistence.config.QueryHints; @QueryHint(name=QueryHints.PARAMETER_DELIMITER, value=",");
See Also
For more information, see: