Skip to content

Commit f2a7cb4

Browse files
committed
update
1 parent e9813b5 commit f2a7cb4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Core/DB.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,8 @@ public function selectPairs(string $query, mixed ...$params): array
351351
*/
352352
public function close(): void
353353
{
354-
$this->mysqli->close();
354+
//don't actually close the connection to allow reuse within the same request, just mark it as closed
355+
//$this->mysqli->close();
355356
$this->closed = true;
356357
}
357358

0 commit comments

Comments
 (0)