Hi,
Please help me to understand if I delete carriers table in
TelephonyProvider. What will be happened?
I use code below:
try
{
Uri mContacts =
Uri.parse("content://telephony/carriers");
ctx.getContentResolver().delete(mContacts, null,null);
}
catch(Exception e)
{
}
the table is created using sql:
db.execSQL("CREATE TABLE " + CARRIERS_TABLE +
"(_id INTEGER PRIMARY KEY," +
"name TEXT," +
"numeric TEXT," +
"mcc TEXT," +
"mnc TEXT," +
"apn TEXT," +
"user TEXT," +
"server TEXT," +
"password TEXT," +
"proxy TEXT," +
"port TEXT," +
"mmsproxy TEXT," +
"mmsport TEXT," +
"mmsc TEXT," +
"type TEXT," +
"current INTEGER);");
I don't know the table is for what kind of service. My best guess is
for mms. If i delete this table, mms does not work. Am I right?
Thanks,
Forrest
--~--~---------~--~----~------------~-------~--~----~
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]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---