pl/sql in asp

pl/sql in asp

soleahsoleah Posts: 5Questions: 0Answers: 0
edited October 2011 in General
Not new but not an expert.

I have an sql script in my asp webpage to pull the data and display it using datatables. This is working fine except when dealing with large data. It's giving a warning about browser slowing down or becoming unresponsive.

What is the best solution, other than writing a server-side script?

Replies

  • allanallan Posts: 63,534Questions: 1Answers: 10,475 Site admin
    If you are loading it as Ajax sourced data, enable deferred rendering for a huge speed boost: http://datatables.net/release-datatables/examples/ajax/defer_render.html . If its client-side, then... probably switch to Ajax source loading :-). There are other ways - you can turn of filtering or sorting for example - but at some point it will become too much for the browser. How many rows are you dealing with?

    Allan
  • soleahsoleah Posts: 5Questions: 0Answers: 0
    Around 4,000.

    I'll probably try the ajax source loading first and see.

    Thank you!
This discussion has been closed.