In the words of the yellow-skinned guy, Doh! Now that you've pointed it out, how could things work any other way?
OK, one last attempt at a workaround. If you've got a filter that checks for SQL keywords so a post can be blocked if necessary, could it be turned into a text replacement filter instead? For example, a list of keywords and replacements, eg. KEYWORD -> KEY_WORD.
There's a bunch of ways this could be done directly in SQL, but it depends on the DBMS you're using. The REPLACE() function works, ideally using something like CASE...WHEN...END. |