-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoggingPDOStatement.php
55 lines (45 loc) · 1.57 KB
/
LoggingPDOStatement.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
namespace TiGR\DatabaseLogger;
class LoggingPDOStatement extends \PDOStatement
{
private $params;
public function bindValue($parameter, $value, $data_type = \PDO::PARAM_STR)
{
$this->storeParam($parameter, $value, $data_type);
return parent::bindParam($parameter, $value, $data_type);
}
private function storeParam($parameter, &$value, $type = \PDO::PARAM_STR, $length = null)
{
$param = ['value' => $value, 'type' => $type];
if (isset($length)) {
$param['length'] = $length;
}
$this->params[$parameter] = $param;
}
public function bindParam($parameter, &$variable, $data_type = \PDO::PARAM_STR, $length = null, $driver_options = null)
{
$this->storeParam($parameter, $variable, $data_type, $length);
parent::bindParam($parameter, $variable, $data_type, $length, $driver_options);
}
public function execute($params = null)
{
$this->storeParams($params);
DatabaseLogger::logStart();
try {
$result = parent::execute($params);
DatabaseLogger::logEnd($this->queryString, $this->params);
return $result;
} catch (\PDOException $e) {
DatabaseLogger::logError($this->queryString, $e->getMessage(), $e->getCode(), $this->params);
throw $e;
}
}
private function storeParams(array $params = null)
{
if (!empty($params)) {
foreach ($params as $key => $value) {
$this->storeParam($key, $value);
}
}
}
}