MagicFrisbee
Programmer
The Delphi help talks about the possibility of overriding the resulting SQL statments that TDataSetProviders use when resolving changes to the back-end database.
So, what I have is TSQLDataSet that is a join between two tables. HOWEVER, the query that specifies the join ALSO has a parameter in it and is connected to a master TSQLDataSet via the DataSource property (so the 2-table join is a "child" of a dataset that represents records from 1 table). Two TClientDataSets represent the master and the detail (the detail via the DataSetField propety).
I would like my users to be able to insert, update, and delete records in the "child/join" ClientDataSet, and when ApplyUpdates is called, I'd like to provide SQL statements so the provider/resolver knows what to do. Perhaps I handle the BeforeUpdateRecord event, but how? What do I write?
Thanks ahead of time, experts!
GIS Programmer
City of Orem, UT
So, what I have is TSQLDataSet that is a join between two tables. HOWEVER, the query that specifies the join ALSO has a parameter in it and is connected to a master TSQLDataSet via the DataSource property (so the 2-table join is a "child" of a dataset that represents records from 1 table). Two TClientDataSets represent the master and the detail (the detail via the DataSetField propety).
I would like my users to be able to insert, update, and delete records in the "child/join" ClientDataSet, and when ApplyUpdates is called, I'd like to provide SQL statements so the provider/resolver knows what to do. Perhaps I handle the BeforeUpdateRecord event, but how? What do I write?
Thanks ahead of time, experts!
GIS Programmer
City of Orem, UT