No, qlc:info just returns info. You should use cursor and next_answers.<br><br>Just from documentation:<br><pre>C = qlc:cursor(qlc:q([X || X <- qlc:append(QH1, QH2)],{unique,true})),<br>R = qlc:next_answers(C, 5),<br>ok = qlc:delete_cursor(C),<br>
R.</pre><br><br><div class="gmail_quote">On Mon, Apr 28, 2008 at 2:42 PM, Ahmed Ali <<a href="mailto:ahmed.nawras@gmail.com">ahmed.nawras@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Thanks Hynek and Kenneth for the quick response.<br>
<br>
Just to confirm, for qlc, I should write the query first and then run<br>
qlc:info/2 on it in order to do the limiting, as the example below<br>
shows. Is this it?<br>
<br>
e.g.:<br>
Q = qlc:q(...),<br>
qlc:info(Q, [{n_elements, 5}]<br>
<div class="Ih2E3d"><br>
Best regards,<br>
<br>
Ahmed Al-Issaei<br>
<br>
</div><div><div></div><div class="Wj3C7c">On Mon, Apr 28, 2008 at 4:32 PM, Kenneth Lundin<br>
<<a href="mailto:kenneth.lundin@gmail.com">kenneth.lundin@gmail.com</a>> wrote:<br>
> Hi,<br>
><br>
>  You can use qlc<br>
>  <a href="http://www.erlang.org/doc/man/qlc.html" target="_blank">http://www.erlang.org/doc/man/qlc.html</a><br>
>   or you can use<br>
>  mnesia:select/4 in combination with mnesia:select/1<br>
>  <a href="http://www.erlang.org/doc/man/mnesia.html#select-4" target="_blank">http://www.erlang.org/doc/man/mnesia.html#select-4</a><br>
><br>
>  /Kenneth Erlang/OTP, Ericsson<br>
><br>
><br>
><br>
><br>
>  On 4/28/08, Ahmed Ali <<a href="mailto:ahmed.nawras@gmail.com">ahmed.nawras@gmail.com</a>> wrote:<br>
>  > Hi All,<br>
>  ><br>
>  > Does anyone have an idea of how to limit size of result set in mnesia<br>
>  > similar to the effect of LIMIT clause in the SQL query below in MySQL?<br>
>  ><br>
>  > SELECT * FROM Topic LIMIT 5;<br>
>  ><br>
>  > Best regards,<br>
>  ><br>
>  > Ahmed Al-Issaei<br>
><br>
><br>
> > _______________________________________________<br>
>  > erlang-questions mailing list<br>
>  > <a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
>  > <a href="http://www.erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://www.erlang.org/mailman/listinfo/erlang-questions</a><br>
>  ><br>
><br>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://www.erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://www.erlang.org/mailman/listinfo/erlang-questions</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>--Hynek (Pichi) Vychodil