JEE Project - Separating SQL from code: I have SQL in my sql.properties file like this .. on 4 lines.
emp_sql=select * \
from employees \
where \
name = 'JON'
The loader sees only first line - rest of the lines are being ignored. what am I doing wrong. thanks.