1 | <?php |
||
25 | class PreparedQueryPooler extends ClientPooler |
||
26 | { |
||
27 | /** |
||
28 | * getPoolerType |
||
29 | * |
||
30 | * @see ClientPoolerInterface |
||
31 | */ |
||
32 | public function getPoolerType() |
||
36 | |||
37 | /** |
||
38 | * getClientFromPool |
||
39 | * |
||
40 | * @see ClientPooler |
||
41 | * @param string $sql |
||
42 | * @return PreparedQuery|null |
||
43 | */ |
||
44 | protected function getClientFromPool($sql) |
||
54 | |||
55 | /** |
||
56 | * createClient |
||
57 | * |
||
58 | * @see ClientPooler |
||
59 | * @param string $sql SQL query |
||
60 | * @return PreparedQuery |
||
61 | */ |
||
62 | public function createClient($sql) |
||
66 | } |
||
67 |