I have a question regarding prepared statements using PDO.I have a query which selects all records from a table without any bind value i.e there are no filters.It is as simple as "SELECT * FROM EMP".The query would be exceuted a number of times as records are displayed using pagination.Is there any benefit using prepared sql statement or should I just stick to simple query statement?
Thanks for the help. Simmy