Merge "Don't update global table when upgrading secondary users' database." into jb-mr1.1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
9a1473406f
@@ -1507,17 +1507,19 @@ public class DatabaseHelper extends SQLiteOpenHelper {
|
||||
|
||||
if (upgradeVersion == 94) {
|
||||
// Add wireless charging started sound setting
|
||||
db.beginTransaction();
|
||||
SQLiteStatement stmt = null;
|
||||
try {
|
||||
stmt = db.compileStatement("INSERT OR REPLACE INTO global(name,value)"
|
||||
+ " VALUES(?,?);");
|
||||
loadStringSetting(stmt, Settings.Global.WIRELESS_CHARGING_STARTED_SOUND,
|
||||
R.string.def_wireless_charging_started_sound);
|
||||
db.setTransactionSuccessful();
|
||||
} finally {
|
||||
db.endTransaction();
|
||||
if (stmt != null) stmt.close();
|
||||
if (mUserHandle == UserHandle.USER_OWNER) {
|
||||
db.beginTransaction();
|
||||
SQLiteStatement stmt = null;
|
||||
try {
|
||||
stmt = db.compileStatement("INSERT OR REPLACE INTO global(name,value)"
|
||||
+ " VALUES(?,?);");
|
||||
loadStringSetting(stmt, Settings.Global.WIRELESS_CHARGING_STARTED_SOUND,
|
||||
R.string.def_wireless_charging_started_sound);
|
||||
db.setTransactionSuccessful();
|
||||
} finally {
|
||||
db.endTransaction();
|
||||
if (stmt != null) stmt.close();
|
||||
}
|
||||
}
|
||||
upgradeVersion = 95;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user