Nie ma to nic wspólnego z wątkiem bezpieczeństwo .
W trybie WAL program zapisujący nie blokuje czytników, więc platforma Android uważa, że w tym przypadku dobrym pomysłem jest użycie większej puli połączeń.
A może nie, jak pokazuje ten komentarz:
private void setMaxConnectionPoolSizeLocked() {
if ((mConfiguration.openFlags & SQLiteDatabase.ENABLE_WRITE_AHEAD_LOGGING) != 0) {
mMaxConnectionPoolSize = SQLiteGlobal.getWALConnectionPoolSize();
} else {
// TODO: We don't actually need to restrict the connection pool size to 1
// for non-WAL databases. There might be reasons to use connection pooling
// with other journal modes. For now, enabling connection pooling and
// using WAL are the same thing in the API.
mMaxConnectionPoolSize = 1;
}
}