Execution of commented code

Scriptcase ignores commented sc functions and runs them anyway. For example following code in onRecord executes even though it is commented

sc_exec_sql(“SELECT * FROM table’”);

In other instances Scriptcase ignores comments on php code and reports errors because of what is in the comment. If I comment the code, why does it execute?

This is pretty big issue.

You must comment like this:
// sc_exec_sql(“SELECT * FROM table’”);
or
/* sc_exec_sql(“SELECT * FROM table’”); */