![]() |
|
There's more than one way to do things | |
PerlMonks |
Answer: Why does my query work on the command line, but fail in my browser?by cavac (Deacon) |
on Jul 15, 2012 at 21:57 UTC ( #981937=categorized answer: print w/replies, xml ) | Need Help?? |
Q&A > database programming > Why does my query work on the command line, but fail in my browser? - Answer contributed by cavac
The query also uses double quotes. Most databases either don't accept that, or interpret it in some other way (like PostgreSQL, which uses it to indicate that column name or table name is case sensitive. This is especially problematic when you just copy the whole string from whatever tool you use to test the queries into Perl.
|
|