Subject: | AND/OR case sensitive |
SQL-Statement-1.09/
Perl v5.8.0
Linux beta 2.4.20-4GB-athlon #1 Wed Apr 16 14:44:03 UTC 2003 i686 unknown unknown GNU/Linux
When using the keywords 'and' and 'or' in lowercase in the WHERE-clause the parser doesn't output the expected array. For example the BETWEEN statement given and error when used like 'col_name BETWEEN 1 and 5'.
And a statement like 'col1 = 3 and (col2 = 4 or col3 = 5)' the output is wrongly nested as if the input was '(col1 = 3 and col2 = 4) or col3 = 5'.