Hi Megha Joshi, Thanks for your reply. As far as we can see the subscription info is not in that database. In fact, the scheme of that database does not contain a "subscriptions" table, as you can see below. We made this dump just after sending a subscription request to our emulator.
regards, Writser -------------------- sqlite> .schema CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account)); CREATE TABLE _sync_state_metadata (version INTEGER); CREATE TABLE accounts (_id INTEGER PRIMARY KEY,name TEXT,provider INTEGER,username TEXT,pw TEXT,active INTEGER,keep_signed_in INTEGER,UNIQUE (provider, username)); CREATE TABLE android_metadata (locale TEXT); CREATE TABLE avatars (_id INTEGER PRIMARY KEY,contact TEXT,provider INTEGER,account INTEGER,hash TEXT,_data TEXT,UNIQUE (account, contact)); CREATE TABLE gtalkDataMessageCapable (_id INTEGER PRIMARY KEY,bare_jid TEXT,resource TEXT,cap_version TEXT); CREATE TABLE outgoingRmqMessages (_id INTEGER PRIMARY KEY,rmq_id INTEGER,type INTEGER,ts INTEGER,data TEXT); CREATE TABLE providerSettings (_id INTEGER PRIMARY KEY,provider INTEGER,name TEXT,value TEXT,UNIQUE (provider, name)); CREATE TABLE providers (_id INTEGER PRIMARY KEY,name TEXT,fullname TEXT); CREATE TABLE settings (name TEXT PRIMARY KEY,value TEXT); CREATE TRIGGER account_cleanup DELETE ON accounts BEGIN DELETE FROM avatars WHERE account= OLD._id;END; sqlite> -------------------- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] Announcing the new M5 SDK! http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

