For my current project, I need to report on data but I do not want to maintain a connection to the database while the report is open. When the report is opened, I just want it to open the tables, read the data and then close the table releasing the connection. It will then display data from memory.
The reason I want to do this is that a large number of users are expected for this application and I'm trying to keep the load on the backend database as low as possible. I know users will want to keep reports open and this will increase the load as long as they're open.
What I want is basically an ADO disconnected recordset, but those don't seem to work with reports.
Any ideas?
Thank you.
The reason I want to do this is that a large number of users are expected for this application and I'm trying to keep the load on the backend database as low as possible. I know users will want to keep reports open and this will increase the load as long as they're open.
What I want is basically an ADO disconnected recordset, but those don't seem to work with reports.
Any ideas?
Thank you.