Another DB request sorry.
Again its only a quick one to explain but I expect might be more difficult to implement. The problem is that if you use aliases the code completion fails to work.
Example
Select * from tableA where tableA.column1 = 1 : the code completion would work.
Select * from tableA ATable where ATable.column1 =1 the code completion would not provide any suggestions for columns in ATable.
I guess what I’m asking for is can you resolve alias names used in a query to their actual Table names, to allow code completion to work for them?
Regards,
Mike.