http://qs321.pair.com?node_id=222742


in reply to Prepared query not accepting || instruction at execution

Placeholders in prepared statements can only be replaced with values, not just any string.

The fact is, the database driver parses (should parse) the query at prepare time, leaving markers for the missing values. When you substitute something, it is interpreted as a value. So, in your example, you were executing this: SELECT name FROM categories WHERE categories.workrelated = "('Y' || 'N')"; which I'm not surprised to notice didn't return any row.

The whole perparing business is intended to:

In your case, the first reason doesn't apply, and I don't think there is a way to accomplish the second.

-- 
        dakkar - Mobilis in mobile