Bug 843005 - Disable Android SQLite locking in databases for REL 11 and higher r=kats

This commit is contained in:
Mark Finkle 2013-04-05 14:54:20 -04:00
Родитель 960a39637a
Коммит 1e502ef718
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -1774,6 +1774,7 @@ public class BrowserProvider extends ContentProvider {
// commands in parallel using multiple connections.
if (Build.VERSION.SDK_INT >= 11) {
db.enableWriteAheadLogging();
db.setLockingEnabled(false);
} else {
// Pre-Honeycomb, we can do some lesser optimizations.
cursor = null;

Просмотреть файл

@ -196,6 +196,7 @@ public class TabsProvider extends ContentProvider {
// commands in parallel using multiple connections.
if (Build.VERSION.SDK_INT >= 11) {
db.enableWriteAheadLogging();
db.setLockingEnabled(false);
} else {
// Pre-Honeycomb, we can do some lesser optimizations.
cursor = null;