Skip to content
Advertisement

How to get the SQL_CALC_FOUND_ROWS value using prepared statements?

I’m currently scratching my head at how to implement SQL_CALC_FOUND_ROWS with prepared statements.

I’m writing a pagination class and obviously i want to add LIMIT to the query but also find what the total number of rows would be.

Here’s an example from the class in question.

JavaScript

I’m a bit stumped as to how to get the SQL_CALC_FOUND_ROWS actual value? I had thought adding in something like:

JavaScript

But that only gives a number based on the LIMIT, so in the above example its 3 rather than the full 6 that it should be.

Advertisement

Answer

Managed to figure it out, i will detail my answer below for anyone whos interested in future.

Original Code

JavaScript

Updated Code

JavaScript

Probably could do it better another way but couldn’t seem to find any good examples anywhere online and this works!

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement