Hello Gurus -
Sorry about raising this question as Critical. I need an urgent solution to the problem at hand
So, I have a screen where there is a DW which retrieves data from a parent table say CUSTOMER_MASTER, and 2 DWs which retrieve data from 2 child tables CUSTOMER_STATE and CUSTOMER_TERRITORY linked to the parent table thro the CUST_ID column
Simultaneous deletes and inserts can happen across these 3 datawindows at any point in time. I wrote a simple logic while saving to handle Deletes (Delete Child First followed by Parent) and Inserts (Insert Parent First followed by Child) separately and commit all of them at one shot. But, the customer side SME is very particular to use a 2 pass method and utilize the SQLPreview event only for this operation
Now, I know SQLPreview event gets triggered for every record which has been modified/deleted/inserted into a DataWindow when I call the Update function on it. So, if I use the SQLPreview Event, I am thinking of the below approach. This may be crude and crusty, but I am just typing what came to my mind
1. When updating the Child DW, for Inserts - Check if the parent DW has a record in Primary buffer with NewModified! status. If Yes, skip the current update and update the Parent first, and later update the Child DW (the SQLSyntax can be saved to a file specific to the child in the meantime)
2. When updating the Parent DW, for Deletes - Check if the Child has all its records in the Delete buffer. If yes, skip the current update and update the Child first, and later update the Parent DW
But, the above appears to be pretty dirty and not an elegant way to do stuff with PowerBuilder's potential
Any suggestions?
Thanks,
Krishna
BTW, you never gave us ...
DBMS version & build.
PB version & build.
DB client being used.
Connection settings being used.
Regards ... Chris
BTW, I got this code to work. I will post the modified code and explanation of what I have done to achieve this touch-your-nose-from-around-your-head approach. Maybe it will be useful to some developer being pressed by a 'I-want-only-this-approach' kind of person like in my case