I am using txtsql for parsing purpose.
When ever sql statement contains a table with intergers in it txtsql is not able to handle
that statement.
example if i execute the statement like (name of the table is 'table1')
Delete from table1 where cat="mini";
txtsql is not able to parse this statement that means
txtSQL.lexer.parse() returns false
If we add single quote to that table name then it will get parsed properly
but in mysql this kind of statement also works.
Is there any way to make txtsql enable to take up table names that will
contains integers.
i am using txtsql version 4.0a
looking forward to get some help
