<div dir="ltr">It&#39;s a harmless warning generated by sqlite due to it&#39;s design.&nbsp; It just means something was reading from the db while something else was writing.<br><br><div class="gmail_quote">On Sun, Oct 19, 2008 at 2:24 PM, Jon Bruel <span dir="ltr">&lt;<a href="mailto:jbr@consiglia.dk">jbr@consiglia.dk</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">I have made an application using the fifo application which behaves as<br>
the Asterisk queue: It rings to the members. I use javascript DB to<br>
access the core database in various scripts, <a href="http://f.in" target="_blank">f.in</a> the following script:<br>
//This script is used to disconnect agents being rung from a queue when<br>
abandoned by the customer before answered.<br>
use(&quot;CoreDB&quot;);<br>
var db = new CoreDB(&quot;core&quot;);<br>
var sql=&quot;select uuid from channels where cid_num=&#39;&quot;+argv+&quot;&#39; and<br>
state=&#39;CS_EXECUTE&#39;;&quot;;<br>
db.prepare(sql);<br>
while(db.next()) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp;rec = db.fetch();<br>
 &nbsp; &nbsp; &nbsp; &nbsp;apiExecute(&quot;uuid_kill&quot;, rec[&quot;uuid&quot;]);<br>
}<br>
db.close();<br>
<br>
My problem is that I get a message from the CLI: mod_spidermonkey.c:3300<br>
js_api_use() Loading CoreDB, [ERR] mod_spidermonkey_core_db.c:250<br>
db_prepare() Error database is locked.<br>
The error does not occur every time.<br>
I have closed the database in every script using it.<br>
Is the anything I should be aware of to prevent this from happening?<br>
<br>
<br>_______________________________________________<br>
Freeswitch-users mailing list<br>
<a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Anthony Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/">http://www.freeswitch.org/</a><br>ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
<br>AIM: anthm<br><a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net">irc.freenode.net</a> #freeswitch<br><br>FreeSWITCH Developer Conference<br><a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br><a href="http://iax:guest@conference.freeswitch.org/888">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>pstn:213-799-1400<br>
</div>