1 | <?php |
||
32 | class Statement extends StatementAbstract |
||
33 | { |
||
34 | /** |
||
35 | * Constructor |
||
36 | * |
||
37 | * @param ResultInterface $resultPrototype |
||
38 | * @access public |
||
39 | */ |
||
40 | public function __construct(ResultInterface $resultPrototype = null) |
||
44 | |||
45 | /** |
||
46 | * {@inheritDoc} |
||
47 | */ |
||
48 | protected function realPrepare($link, /*# string */ $sql) |
||
53 | |||
54 | /** |
||
55 | * {@inheritDoc} |
||
56 | */ |
||
57 | protected function realExecute(array $parameters)/*# : bool */ |
||
72 | |||
73 | /** |
||
74 | * {@inheritDoc} |
||
75 | */ |
||
76 | protected function realClose($stmt) |
||
79 | |||
80 | /** |
||
81 | * bind parameters |
||
82 | * |
||
83 | * @param \PDOStatement $stmt |
||
84 | * @param array $parameters |
||
85 | * @return bool |
||
86 | * @access protected |
||
87 | */ |
||
88 | protected function bindParameters( |
||
101 | |||
102 | /** |
||
103 | * Fix param name |
||
104 | * |
||
105 | * @param mixed $name |
||
106 | * @return string |
||
107 | * @access protected |
||
108 | */ |
||
109 | protected function fixParam($name)/*# : string */ |
||
115 | } |
||
116 |