I want to be able to define dynamic field / clause lists to be entered into a query and cant <br>
seem to get it down, example :<br>
<br>
Entity = atable,<br>
FieldList = "<a href="http://S.name">S.name</a>,S.address",<br>
ClauseList = "<a href="http://S.name">S.name</a> = \"me\" ",<br>
<br>
Q = query [ FieldList || S <- table(Entity), ClauseList ] end,<br>
<br>
Field/Clause lists have to be string, otherwise it will start looking for the bound variable<br>
so I need a way of having the string evaluated within the query so the query would evaluate as<br>
<br>
Q = query [ <a href="http://S.name">S.name</a>,S.address || S <- table(atable), <a href="http://S.name">S.name</a> = "me" ] end,<br>
<br>
in other langages I have eval to do this, or $$ in php, but I cant seem to find a way of doing this<br>
in erlang<br>
<br>
Thanks in advance<br>
<br>
Dale<br>