We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9813b5 commit f2a7cb4Copy full SHA for f2a7cb4
1 file changed
src/Core/DB.php
@@ -351,7 +351,8 @@ public function selectPairs(string $query, mixed ...$params): array
351
*/
352
public function close(): void
353
{
354
- $this->mysqli->close();
+ //don't actually close the connection to allow reuse within the same request, just mark it as closed
355
+ //$this->mysqli->close();
356
$this->closed = true;
357
}
358
0 commit comments