Hi,
I am unable to open any site from android emulator. I am behind proxy. I have tried inserting proxy setting values into system table. I have written the following command:
./adb shell sqlite3 /data/data/com.google.android.providers.settings/databases/settings.db "\"INSERT INTO system VALUES\(99,'http_proxy','<<proxy>>:<<port>>'\);\""
This gives me no error. But when i am fetching the value from system table using following command:
adb shell sqlite3 /data/data/com.google.android.providers.settings/databases/settings.db "SELECT * FROM system"; -- nothing gets displayed.
I am using eclipse and tried to provide proxy values as command line argument also.
Could any body tell me where I am doing wrong?

