We are rewriting the site used by one of our customers. User traffic on it is very low, less than 100 unique visitors per week. This is basically a simple interface to their data in our databases. It allows them to query and filter different data sets.
We are rewriting the site in Python, reusing the same Oracle database in which the data is currently included. The current version is written in an old, old version of Coldfusion. One of the things Coldfusion does well is that it displays a ton of database records on one page. It is capable of displaying hundreds of thousands of lines simultaneously without browser crashes. It uses a Java applet, and it looks like the contents of the strings are possibly compressed and passed through HTML or something like that. HTML has a large data block, but it is not displayed - it is simply displayed using the Java applet.
I tried several Javascript solutions, but they all depend on whether the data will be present in the HTML table or something like that. This makes browsers freeze and shut down.
Does anyone know any solutions to this situation? Our client loves the ability to scroll through all this data without clicking the "next page" link.
Thanks Ryan
python html coldfusion oracle
Ryan
source share