Recently working on my core database class I found an issue with my num_of_rows() method.
I was parsing my query to do various things, which basically boiled down to running a query like:
[code]SELECT COUNT(*) FROM `table_name`[/code]
To return the number of rows generated by this query.
Now, when I started introducing pagination in my front end, I wanted to utilise LIMIT/OFFSET in my queries, like so;
[code]SELECT COUNT(*) FROM `table_name` LIMIT 30, 10[/code]
Which I would hope returned 10 (or less if I had less than 30 rows in my table.
Anyway, this was throwing a wobbler in my PDO class, I wasn't getting any error or feedback that there was an issue, and in phpmyadmin I was simply getting "MySQL returned an empty result set (i.e. zero rows)".
Baffled, I took to google and found this work around:
[code]SELECT COUNT(*) FROM (SELECT * FROM `projects` LIMIT 30,10) AS subquery[/code]
Happy coding
Monday, 16 April 2012
Subscribe to:
Posts (Atom)
Mastering Frontend Interviews: 10 Essential Concepts Every Developer Should Know
Frontend development interviews can be daunting, particularly with the breadth of topics covered. From JavaScript fundamentals to performanc...
-
"I'm a Celebrity, Get Me Out of Here" has become a cultural phenomenon, captivating audiences worldwide with its thri...
-
The Concept of True North in Lean Methodology In the world of Lean methodology, one of the most fundamental and guiding principles is ...
-
In today's fast-paced digital landscape, ensuring the seamless operation of online services during high-demand events is paramount. The...