1 | <?php |
||
31 | class Statement extends StatementAbstract |
||
32 | { |
||
33 | /** |
||
34 | * {@inheritDoc} |
||
35 | */ |
||
36 | protected function realPrepare($link, /*# string */ $sql) |
||
41 | |||
42 | /** |
||
43 | * {@inheritDoc} |
||
44 | */ |
||
45 | protected function realExecute(array $parameters)/*# : bool */ |
||
60 | |||
61 | /** |
||
62 | * {@inheritDoc} |
||
63 | */ |
||
64 | protected function realClose($stmt) |
||
69 | |||
70 | /** |
||
71 | * bind parameters |
||
72 | * |
||
73 | * @param \PDOStatement $stmt |
||
74 | * @param array $parameters |
||
75 | * @return bool |
||
76 | * @access protected |
||
77 | */ |
||
78 | protected function bindParameters( |
||
92 | } |
||
93 |