RE: [sqlite] Skype client using SQLite? (original) (raw)

-----Original Message----- From: [EMAIL PROTECTED] [[mailto:EMAIL PROTECTED] Sent: Tuesday, August 28, 2007 8:14 AM To: [email protected] Subject: [sqlite] Skype client using SQLite?

In reference to

http://www.sqlite.org/cvstrac/tktview?tn=2592

This is the first public indication we have had that Skype is using SQLite in their windows clients. However, the person who wrote the ticket seems to be a bit confused. Can any able hackers in the SQLite community confirm that the Skype windows client is using SQLite? It would be nice to add them to the page of high-profile users.

Bundle.dat file also confirmed on Windows Skype, found it: C:\Documents and Settings<user account>\Application Data\Skype<skype account>\dyncontent\bundle.dat

In my case the tables are populated. Example below.

sqlite> .schema CREATE TABLE bupdate (uri text, type text, meta text, prio integer,id integer, b ody blob, terms blob); CREATE TABLE events (id intenger, event integer, event_time integer); CREATE TABLE install (uri text, type text, meta text, prio integer,id integer, b ody blob, terms blob); CREATE TABLE itemkeys (id integer, keys text); CREATE TABLE reported (id integer, exposed_cnt integer, exposed_time integer, ex ec_cnt integer, close_cnt integer); CREATE TABLE stats (id integer, exposed_cnt integer,exposed_time integer, exec_c nt integer, close_cnt integer,last_expose_start integer, exposing_now integer); CREATE INDEX bupdate_id on bupdate (id); CREATE INDEX bupdate_uri on bupdate (uri); CREATE INDEX events_id on events (id); CREATE INDEX install_id on install (id); CREATE INDEX install_uri on install (uri); CREATE INDEX itemkeys_id on itemkeys (id); CREATE INDEX reported_id on reported(id); CREATE INDEX stats_id on stats (id);

sqlite> select * from install; uri|type|meta|prio|id|body|terms ui/banners/main/81|text/x-rich|information|10000|81|How is your call quality? Please give us your feedba ck|☺


To unsubscribe, send email to [EMAIL PROTECTED]