'/' statement separator?

by Mar 8, 2013

The following query works in Informix:
SELECT 1
/ 2
FROM table(list{1})

But the following not ("A syntax error has occurred."):
SELECT 1
/
2
FROM table(list{1})
The SQL Log shows that the statement sent to the server just ends before the '/'.

I found an option "'/' at End of Line Terminates Statement", which I have UNchecked. Is there another option of which I'm not aware of or is there a parser problem?

ADS 12.0.17