Manually increase 100 record limit

Manually increase 100 record limit

CloudVGPCloudVGP Posts: 4Questions: 1Answers: 0

Hi experts

Am working ASP/SQL website and redering database records using this awesome DataTables plugin.

But as i constated, it's fetching only 100 records. I have 1500+ records. But it only showing 100 records.

Showing 1 to 25 of 100 entries

How can i increase MANUALLY the limit ?

BTW: i cannot use the api, or php or Json. Am getting the records directly from DB to HTML

Answers

  • kthorngrenkthorngren Posts: 21,167Questions: 26Answers: 4,921

    Am getting the records directly from DB to HTML

    Sounds like its a change outside of Datatables control. You will need to look at your SQL query to see why it is limiting the records fetched.

    Kevin

  • colincolin Posts: 15,237Questions: 1Answers: 2,599

    There isn't a limit as far as DataTables is concerned, so you'll want to look at the server end. Are you using serverside?

    Colin

  • CloudVGPCloudVGP Posts: 4Questions: 1Answers: 0

    yes sure i tried serverside = true and serverside = 1 in but it's displaying only 100 records. my sql is returning well 1341 records in my old page, i just made a new page with same query, but instead i changed my table to datatables.net

  • CloudVGPCloudVGP Posts: 4Questions: 1Answers: 0

    solved. yes you were right. i had a server side error that i missed to see and limiting query results.
    thx very much

This discussion has been closed.