noycez Level: VB Guru

 Registered: 14-10-2002 Posts: 79
|
Re: Compiling SQL results into 1 report
using one recordset to get datas to different databases might not be possible (as far as i know) so as a suggestion, open one recordset for each databases.
to display in a datagrid may need a lot of work, you may use a dummy table where you save the results from the recordsets, the open another dummy recordset and get the data from the dummy table, and use this dummy recordset as a datasource for your datagrid. just dont't forget to empty the dummy database after you used it.
to display in a flexgrid, use AddItem of flexgrid's property and add all the datas from the recordset. the greater the data each recordset have, the greater the time it consumed.
hope this gives you an idea
____________________________
Funny thought:
Practice makes perfect.....
But nobody's perfect......
so why practice?
|