Hi,<br><br>I have a need to extra a list of valid DTMF input from DB ( as it may sometimes chang).&nbsp; The way I would do it is to extract the list of valid DTMF from DB before session.answer().&nbsp; When the caller enters the DTMF when the menu is played, I need to search to see if the input is within the the resultset.&nbsp; There are few ways that I can think of:<br>
<br>Option 1: Do a search query whenever the user enter the DTMF to check if it is valide.<br><br>Option 2: Traverse the resultset (setting cursor to beginning of the resultset) to see if the entered DTMF exists or not.<br>
<br>Option 3: Store the entire resultset into a hash table before playing the menu.<br><br>From the performance perspective, which one is better?&nbsp; Is there a better way to do it?&nbsp; <br><br>The problem is that I am already experience some delay when doing the first DB call to get the entire list of valid DTMF from DB.&nbsp; I just think further delay is not good.&nbsp; <br>
<br>Is there any good way to search for an element within a resultset?<br><br>Thank you in advance for your input.<br><br>Regards,<br>Pete<br><br>