Feature #23374
closedAdd support for prepared queries
0%
Description
Prepared queries would help take better advantage of advanced usage of underlying DBMS and would allow DBAL to be much more efficient by allowing parsed and rewritten queries to be cached.
(issue imported from #M15457)
Files
Updated by Xavier Perseguers over 14 years ago
v2 implements the TODO of first version:
Find a way to already compile the query into a string while preserving the information
where each parameter appears. This will prevent compiling and compiling again the
query in method stmt_execute() and will allow caching of the query into Memcached and
as such completely bypass the parsing of the already seen before SELECT query.
This will allow #21614 to be fixed.
Updated by Xavier Perseguers over 14 years ago
dbal_v3 fixes issues when really using DBAL (local unit tested with Oracle).
Updated by Xavier Perseguers over 14 years ago
Committed to:
- Core trunk (rev. 8612)
- DBAL trunk (rev. 36983)