Task #51 — Relax EZOQL so table aliases aren't needed
Attached to Project— EZPDO
Opened by Matt (monsieurcanard) - Tuesday, 12 Jul 2005, 4:31pm
Last edited by oak nauhygon (admin) - Sunday, 17 Jul 2005, 7:40am
Last edited by oak nauhygon (admin) - Sunday, 17 Jul 2005, 7:40am
| Bug Report | |
| O-R mapping | |
| Closed | |
| elnayaf (elnayaf) | |
| All |
| Medium | |
| Normal | |
| CVS | |
| 1.5 | |
Currently, EZOQL queries such as:FROM staffMember WHERE staffMember.username = 'matt' have to be: FROM staffMember as sM WHERE sM.username = ' ...which is unecessary. Thanks! Matt :) |
This task depends upon
This task blocks these from closing
Comments (1) | Attachments (0) | Related Tasks (0/0) | Notifications (2) | Reminders (0) | History |
Comment by oak nauhygon - Monday, 15 Aug 2005, 10:31pm
now fixed. all queries below work the same way.
FROM staffMember WHERE username = 'matt'
FROM staffMember WHERE staffMember.username = 'matt'
FROM staffMember as sm WHERE sm.username = 'matt'