>From ets module documentation:<br><br><p><a name="info/1"><span class="bold_code">info(Tab) -> [{Item, Value}] | undefined</span></a><br>

</p>



<p>Returns information about the table <span class="code">Tab</span> as a list of
<span class="code">{Item, Value}</span> tuples. If <span class="code">Tab</span> has the correct type
         for a table identifier, but does not refer to an existing ETS
         table, <span class="code">undefined</span> is returned. If <span class="code">Tab</span> is not of the
         correct type, this function fails with reason <span class="code">badarg</span>.
</p><br>That should work.<br><br><br><br><div class="gmail_quote">2008/3/15 <a href="mailto:tatezhou@gmail.com">tatezhou@gmail.com</a> <<a href="mailto:tatezhou@gmail.com">tatezhou@gmail.com</a>>:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">






<div style="" bgcolor="#ffffff">
<div><font face="宋体" size="2">
<div><font size="2">Greets:</font></div>
<div><font size="2"></font> </div>
<div><font size="2">I need to create a ets table if it is not exists, how to code 
it ?  I have check the online docs of chapter "ets", there is not function 
to handle this . </font></div>
<div><font size="2"></font> </div>
<div><font size="2"></font> </div>
<div><font size="2">Current solution is to get all the ets tables and check if the 
table i want in the list. but i  don't think this is a good 
idea.</font></div>
<div><font size="2"></font> </div>
<div><font size="2"></font> </div>
<div><font size="2"></font> </div>
<div><font size="2">code:</font></div>
<div><font size="2"></font> </div>
<div><font size="2"></font> </div>
<div><font size="2">Ret = ets:new(client_cmd_hooks, [named_table]),</font></div>
<div><font size="2"></font> </div>
<div><font size="2"></font> </div>
<div><font size="2">thanks.</font></div></font></div></div>
<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></blockquote></div><br>