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 */ |
||
78 | |||
79 | /** |
||
80 | * {@inheritDoc} |
||
81 | */ |
||
82 | protected function realClose($stmt) |
||
87 | |||
88 | /** |
||
89 | * bind parameters |
||
90 | * |
||
91 | * @param \mysqli_stmt $stmt |
||
92 | * @param array $parameters |
||
93 | * @return bool |
||
94 | * @access protected |
||
95 | */ |
||
96 | protected function bindParameters( |
||
112 | |||
113 | /** |
||
114 | * Combine types |
||
115 | * |
||
116 | * @param string &$types |
||
117 | * @param mixed $value |
||
118 | * @access protected |
||
119 | */ |
||
120 | protected function combineTypes(&$types, $value) |
||
133 | } |
||
134 |