Recently I was going through a blog and noticed some points about using PDO in mysql and it changed my view about the PDO. The points are :
* native prepared statements cannot take advantage of the query cache, resulting in lower performance.
* native prepared statements cannot execute certains types of queries, like "SHOW TABLES"
* native prepared statements don't correctly communicate column lengths for certain other "SHOW" queries, resulting in garbled results.
* calling stored procedures multiple times using native prepared statements causes the connection to drop.
Can anyone comment on this please?
I wanted query cache in my web app. I am preparing to move my web app to make use of PDO after considering performance issues with my website. Can anyone please suggest me?
Thanks in advance.