Merge queries from different DBs

In this forum we will discuss things relating the ZEOSLib 6.6.x stable versions

Moderators: gto, EgonHugeist

Post Reply
jascha
Fresh Boarder
Fresh Boarder
Posts: 9
Joined: 14.10.2005, 14:31
Location: Füssen
Contact:

Merge queries from different DBs

Post by jascha »

Hello,

I log data into a sqlite DB. If the DB has a size of 5MB I start a new one. I do this for reasons for performance and data corruption reasons.

Now I do queries on the DB, like give me the data from time x to time y.
When in this timespan there Database has changed, I have to do the queries on several dbs and merge the data afterwards.

My question: Is there an easy way to achive this with zeos?

The several queries just have to be appended into one Dataset. Only the last record of the first query and the first record of the second query need to be merged.

I tried things like having 2 TZQuery objects. query1 doing the query to the first db an query2 to the next. Then append all data from query2 to query1. The problem there is, that this should only be done in memory an not writtin the the real DB.

Any ideas for a good solution?
User avatar
EgonHugeist
Zeos Project Manager
Zeos Project Manager
Posts: 1936
Joined: 31.03.2011, 22:38

Post by EgonHugeist »

jascha,

Actually the SQLite Backup API is not implemented as far as i know. There are direct plain calls to backup and restore but nobody did implement them before..

Feel motivated to do this.
Best regards, Michael

You want to help? http://zeoslib.sourceforge.net/viewtopic.php?f=4&t=3671
You found a (possible) bug? Use the new bugtracker dude! http://sourceforge.net/p/zeoslib/tickets/

Image
marsupilami
Platinum Boarder
Platinum Boarder
Posts: 1918
Joined: 17.01.2011, 14:17

Post by marsupilami »

Hello jascha,

I think your best option for your problem is to use TClientDataset from Delphi or TJvMemoryData from jedi or something like that. Lazarus also has a component like this.
Most probably you will have to copy the records into the target Data Set by yourself. But once you fiish, everything will be in one dataset.
Best regards,

Jan
Post Reply