vote up 0 vote down star

I am writing an application that allows a user to submit a query to multiple systems. I then save each report from each system using SaveToFile, which saves it as an XML document.

The user can then inspect each report by selecting it from a menu, and the report is displayed by loading the report back into an ADO Query component (using LoadFromFile) and then linking this to a listview.

Now, my problem is that the user needs to be able to select any or all of the reports and join them together to create one large report. For example:

The user may define a query to be SELECT * FROM (table) and he can then run this query on System A, System B and System C. Instead of looking at three separate reports, he needs to have the option to join the reports together from the three systems, so that he can just look at one large report, covering all three systems.

Is it possible to do this using the ADO Query components? If not, as the file is saved as an XML document, would it be possible to join the reports together using the XML documents instead?

I have no idea where to start with this so any pointers would be appreciated.

EDIT: Important information which I somehow managed to forget to include at first:

  1. The user needs to be able to access the data offline - i.e. he needs to be able to run the queries over various systems, then work with the reports at a later date. There is therefore a requirement to be able to save the reports to disk and then re-load them at a later date, when not connected to any of the systems that the queries were ran on. The user may want to concatenate the reports at this time.

  2. All reports that are to be joined together will be of exactly the same type - i.e. they will all have been produced from the same query, so will give the same number/type of fields etc.

flag
What is System A? Database? – Ertugrul Tamer Kara Sep 22 at 14:05
System A represents a database that runs on a particular system. System B represents a database that runs on a different system, etc. – Jeedee Sep 22 at 14:18

1 Answer

vote up 2 vote down

Instead of saving these as separate XML files, You could create a ClientDataSet and append the results from all of the sources into one dataset. This will let you look at all of the results at once or just for a single source at a time. The contents of the ClientDataSet can be saved as a single file, which should be easier than dealing with multiple files.

Of course, this assumes you are getting similar data (same columns) from all of your sources.

link|flag
This looks promising, as it would allow me to initially save the reports to disk (as I'm doing currently, as an XML document), then re-load them into the ADO Query components offline (see edits to my original question since your answer). Can anyone expand on this, please? I've never used a ClientDataSet before and although I'm currently looking into it, an example would be very useful. Thanks! – Jeedee Sep 22 at 14:23
Add MidasLib to your uses clause, and then drop a TClientDataSet (from the Data Access tab of the component palette) onto your datamodule. You can define fields, etc., just like any other table. You might want to see delphi.about.com/od/usedbvcl/… and the links available from that page. – Ken White Sep 22 at 14:46
1  
Careful. If you're using Delphi 2009, the MidasLib unit has a memory leak in it, and you'd be better off adding midas.dll to your install. It's been fixed in 2010, though. Not sure about earlier versions. – Mason Wheeler Sep 22 at 15:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.