![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
comment on |
( #3333=superdoc: print w/replies, xml ) | Need Help?? |
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:
-- dakkar - Mobilis in mobile In reply to Re: Prepared query not accepting || instruction at execution
by dakkar
|
|