Move current table property from PDOStatement to Database class

- Address part of https://github.com/friendica/friendica/issues/12011#issuecomment-1533036354
This commit is contained in:
Hypolite Petovan 2023-05-20 12:22:19 -04:00
parent 28185c12fc
commit ce2abcdbca
1 changed files with 7 additions and 5 deletions

View File

@ -80,6 +80,8 @@ class Database
protected $dbaDefinition;
/** @var ViewDefinition */
protected $viewDefinition;
/** @var string|null */
private $currentTable;
public function __construct(IManageConfigValues $config, DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition)
{
@ -503,7 +505,7 @@ class Database
*/
public function p(string $sql)
{
$this->currentTable = null;
$this->profiler->startRecording('database');
$stamp1 = microtime(true);
@ -973,8 +975,8 @@ class Database
switch ($this->driver) {
case self::PDO:
$columns = $stmt->fetch(PDO::FETCH_ASSOC);
if (!empty($stmt->table) && is_array($columns)) {
$columns = $this->castFields($stmt->table, $columns);
if (!empty($this->currentTable) && is_array($columns)) {
$columns = $this->castFields($this->currentTable, $columns);
}
break;
case self::MYSQLI:
@ -1520,8 +1522,8 @@ class Database
$result = $this->p($sql, $condition);
if (($this->driver == self::PDO) && !empty($result) && is_string($table)) {
$result->table = $table;
if ($this->driver == self::PDO && !empty($result)) {
$this->currentTable = $table;
}
return $result;