> antified sql. This would allow us to perform all the complex > things that > people have asked for but simply. > > Select */*.java from src/java where readable == true
Unless you go the whole SQL route of:
select EXPRESSION from SET where CONDITION
eg:
SELECT surname + ", " + firstname
FROM poets
WHERE dead = 1
then you still need some form of mappers, because there is
'requirement' for people to be able to produce mapped output.
