1
0
Fork 0
mirror of synced 2024-07-04 06:00:53 +12:00

Revert "Use buffered queries"

This reverts commit 1c24421a95.
This commit is contained in:
Jake Barnby 2022-11-15 19:43:04 +13:00
parent 1c24421a95
commit 7de2f69f38
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -598,8 +598,7 @@ $register->set('pools', function ($size = APP_DATABASE_DEFAULT_POOL_SIZE) {
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
PDO::ATTR_ERRMODE => App::isDevelopment() ? PDO::ERRMODE_WARNING : PDO::ERRMODE_SILENT, // If in production mode, warnings are not displayed
PDO::ATTR_EMULATE_PREPARES => true,
PDO::ATTR_STRINGIFY_FETCHES => true,
PDO::MYSQL_ATTR_USE_BUFFERED_QUERY => true,
PDO::ATTR_STRINGIFY_FETCHES => true
));
});
};