<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>In default configuration, all DB is located in FS/db/. It's sqlite DB, so if you have sqlite installed</div><div><br></div><div><div># apt-get install sqlite3</div><div>$ cd /usr/local/freeswitch/db</div><div>$ sqlite3 core.db&nbsp;</div><div>SQLite version 3.4.2</div><div>Enter ".help" for instructions</div><div>sqlite> .help</div><div>.bail ON|OFF &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Stop after hitting an error. &nbsp;Default OFF</div><div>.databases &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; List names and files of attached databases</div><div>.dump ?TABLE? ... &nbsp; &nbsp; &nbsp;Dump the database in an SQL text format</div><div>.echo ON|OFF &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Turn command echo on or off</div><div>.exit &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Exit this program</div><div>.explain ON|OFF &nbsp; &nbsp; &nbsp; &nbsp;Turn output mode suitable for EXPLAIN on or off.</div><div>.header(s) ON|OFF &nbsp; &nbsp; &nbsp;Turn display of headers on or off</div><div>.help &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Show this message</div><div>.import FILE TABLE &nbsp; &nbsp; Import data from FILE into TABLE</div><div>.indices TABLE &nbsp; &nbsp; &nbsp; &nbsp; Show names of all indices on TABLE</div><div>.load FILE ?ENTRY? &nbsp; &nbsp; Load an extension library</div><div>.mode MODE ?TABLE? &nbsp; &nbsp; Set output mode where MODE is one of:</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; csv &nbsp; &nbsp; &nbsp;Comma-separated values</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; column &nbsp; Left-aligned columns. &nbsp;(See .width)</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; html &nbsp; &nbsp; HTML &lt;table> code</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; insert &nbsp; SQL insert statements for TABLE</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; line &nbsp; &nbsp; One value per line</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; list &nbsp; &nbsp; Values delimited by .separator string</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tabs &nbsp; &nbsp; Tab-separated values</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tcl &nbsp; &nbsp; &nbsp;TCL list elements</div><div>.nullvalue STRING &nbsp; &nbsp; &nbsp;Print STRING in place of NULL values</div><div>.output FILENAME &nbsp; &nbsp; &nbsp; Send output to FILENAME</div><div>.output stdout &nbsp; &nbsp; &nbsp; &nbsp; Send output to the screen</div><div>.prompt MAIN CONTINUE &nbsp;Replace the standard prompts</div><div>.quit &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Exit this program</div><div>.read FILENAME &nbsp; &nbsp; &nbsp; &nbsp; Execute SQL in FILENAME</div><div>.schema ?TABLE? &nbsp; &nbsp; &nbsp; &nbsp;Show the CREATE statements</div><div>.separator STRING &nbsp; &nbsp; &nbsp;Change separator used by output mode and .import</div><div>.show &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Show the current values for various settings</div><div>.tables ?PATTERN? &nbsp; &nbsp; &nbsp;List names of tables matching a LIKE pattern</div><div>.timeout MS &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Try opening locked tables for MS milliseconds</div><div>.width NUM NUM ... &nbsp; &nbsp; Set column widths for "column" mode</div><div>sqlite> .tables</div><div>aliases &nbsp; &nbsp; calls &nbsp; &nbsp; &nbsp; channels &nbsp; &nbsp;complete &nbsp; &nbsp;interfaces &nbsp;tasks &nbsp; &nbsp;&nbsp;</div><div>sqlite> .schema channels</div><div>CREATE TABLE channels (</div><div>&nbsp;&nbsp; uuid &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; created &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; created_epoch &nbsp;INTEGER,</div><div>&nbsp;&nbsp; name &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; state &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; cid_name &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; cid_num &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; ip_addr &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; dest &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; application &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; application_data &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; dialplan VARCHAR(255),</div><div>&nbsp;&nbsp; context VARCHAR(255),</div><div>&nbsp;&nbsp; read_codec &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; read_rate &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; write_codec &nbsp;VARCHAR(255),</div><div>&nbsp;&nbsp; write_rate &nbsp;VARCHAR(255)</div><div>);</div><div>CREATE INDEX uuindex on channels (uuid);</div><div>sqlite> select * from channels</div><div>&nbsp;&nbsp; ...> ;</div><div>sqlite>&nbsp;</div></div><br><div><html>On Mar 17, 2009, at 12:46 AM, Ali Al-Rubaie wrote:</html><br class="Apple-interchange-newline"><blockquote type="cite"><table cellspacing="0" cellpadding="0" border="0"><tbody><tr><td valign="top" style="font: inherit;"><br>Actually, I'm trying to explore what data is stored in the DB and how can we retrieve it, if it is posible. You may write some scripts to retrieve the data and use it in other supporting application.<br><br><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"><pre><br>Message: 7<br>Date: Mon, 16 Mar 2009 12:24:34 -0400<br>From: Michael Jerris &lt;<a href="mailto:mike@jerris.com">mike@jerris.com</a>><br>Subject: Re: [Freeswitch-users] FS Database<br>To: <a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.freeswitch.org</a><br>Message-ID: &lt;<a href="mailto:1BF9A176-1CE8-4D53-894B-E456DA8897A0@jerris.com">1BF9A176-1CE8-4D53-894B-E456DA8897A0@jerris.com</a>><br>Content-Type: text/plain; charset="us-ascii"<br><br>Which data?<br><br>On Mar 16, 2009, at 11:58 AM, Ali Al-Rubaie wrote:<br><br>> Hi,<br>><br>> Is it possible to access FS DB to retrieve data? Where can i find  <br>> details about that?<br>-------------- next part
 --------------<br>An HTML attachment was scrubbed...<br>URL:<br><a href="http://lists.freeswitch.org/pipermail/freeswitch-users/attachments/20090316/d0d0a1b0/attachment.html">http://lists.freeswitch.org/pipermail/freeswitch-users/attachments/20090316/d0d0a1b0/attachment.html</a><br><br><br>------------------------------<br><br>_______________________________________________<br>Freeswitch-users mailing list<br>Freeswitch-users@lists.freeswitch.org<br>http://lists.freeswitch.org/mailman/listinfo/freeswitch-users<br>UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users<br>http://www.freeswitch.org<br><br><br>End of Freeswitch-users Digest, Vol 33, Issue 67<br>************************************************<br></pre></blockquote></td></tr></tbody></table><br>       _______________________________________________<br>Freeswitch-users mailing list<br><a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>http://lists.freeswitch.org/mailman/listinfo/freeswitch-users<br>UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users<br>http://www.freeswitch.org<br></blockquote></div><br></body></html>