pointreyes
04-03-2002, 03:56 PM
I need to allow for a simple way to populate a HTML Form with data from an Oracle database. However, I don't want to use push/pull technology for a simply viewing of the data. I want to load the many records of data in the database (limited by only one value in the table) into a multi-array variable in JavaScript and then allow the user to simply move back and forth through the array for display onto the form. Is this possible and how? Or is there a better way to do this? Remember I don't want to use push/pull between each record. There is a potential for as many as 100,000 hits a day so 100,000 push/pulls for a simply viewing of the data seems a rather foolish way to use the server.
Oh yeah, I forgot to mention that the form will only display one record at a time due to amount of data in each record (one of the fields is even a CLOB). So scrolling through say a 1,000 records in this type of form is better by allowing a view of one record at a time and allow the user to use the Next and Previous buttons.
Oh yeah, I forgot to mention that the form will only display one record at a time due to amount of data in each record (one of the fields is even a CLOB). So scrolling through say a 1,000 records in this type of form is better by allowing a view of one record at a time and allow the user to use the Next and Previous buttons.