Jump to content
BushAl

FireDAC FDQuery Outer Join with fdUpdateSQL fails when Inserting Records

Recommended Posts

I have a FDQuery with a left join between a cost Centre Table (CC) and an Estimate Detail Table (ED) that can have multiple records for a CC. The select is below for ref. The application should allow the ED to be updated and inserted (at simplest in a string grid). The Query will successfully update records in the ED, but fails when trying to insert, stating "update affected [0] rows, while [1] was requested". So I tried adding a FDUpdateSQL linked to the Query and an OnUpdateRecord as follows but it gives exactly the same error (also shown below)

if (ARequest = arUpdate) and (ASender.FieldByName('EstDtl_ID').IsNull) then
 begin
   ARequest := arInsert;
 end;

If anyone has any tips on how to force an insert under this condition I would be very grateful.

Project Builder.exe raised exception class EFDDBEngineException with message '[FireDAC][Phys][FB]-312. Exact update affected [0] rows, while [1] was requested'.

select b.*, a.csc_id as refcsc_id, a.cscdsc as cscdsc, a.cstpls as refcstpls, a.gstinc as refgstinc, a.gstpct as refgstpct from csc a left join estdtl b on a.csc_id = b.csc_id and b.est_id = !est_id

 

Share this post


Link to post

When I understood you right, you have problems with inserting new records !?

 

How looks your "TFDUpdateSQL.InsertSQL" ?

Share this post


Link to post

The FDQuery SQL is select b.*, a.csc_id as refcsc_id, a.cscdsc as cscdsc, a.cstpls as refcstpls, a.gstinc as refgstinc, a.gstpct  as refgstpct from csc a left join estdtl b on a.csc_id = b.csc_id and b.est_id = !est_id so a fairly straightforward left out join (excuse the 3letter mnemonics)

 

The FDUpdateSQL insert statement is the one generated by FireDac and is:-

 

INSERT INTO ESTDTL
(CSC_ID, ESTDTLDSC, CSTPLS, GSTINC, GSTPCT,
  QTYCLC, QTY, CST, GST, SLE, VAL)
VALUES (:NEW_CSC_ID, :NEW_ESTDTLDSC, :NEW_CSTPLS, :NEW_GSTINC, :NEW_GSTPCT,
  :NEW_QTYCLC, :NEW_QTY, :NEW_CST, :NEW_GST, :NEW_SLE, :NEW_VAL)
RETURNING ESTDTL_ID

 

By default the FDQuery would try and update a query "record" consisting of a real left part and an completely null right part (other than the Est_ID which comes from a parameter in the FDQuery set when choosing the Estimate in a seperate combobox). But it failed with the "update affected [0] rows, while [1] was requested"  and did not insert the record in EstDtl.

 

So I then added the code shown in the original post in an  OnUpdateRecord event on the FDQuery, basically changing the ARequest from arUpdate to  arInsert if the right part is null. This actually inserts the record then fails with the same message. So maybe there is some way to suppress the message (ideally just in this case) but it all happens somewhere in the depths of livebindings...

 

Thanks for looking at this - my first time combining FireDac which seems very powerful and livebindings. I have normally used IBX components. In case its useful its connecting to a Firebird Database.

Al

Share this post


Link to post

In the query I would include the b.ESTDTL_ID to have a unique ID for "ESTTDL table" and in the insert I would set b.est_id to a proper value. What is the content if this est_id field? Can it be null?

Share this post


Link to post

And is this condition true on insert: 

if (ARequest = arUpdate) and (ASender.FieldByName('EstDtl_ID').IsNull) then

Normally it should be insert and not update for new record and the estdtl_id is not in the query, so that should raise an ecxception!?

 

Share this post


Link to post

Thanks very much for the help.

 

I will try as requested and report back.

I had not noticed the insert happening before I added the  OnUpdateRecord and FdUpdateSQL as I just cancelled the program when the exception occurred, so I will go back and test that - its possible that the insert would happen under that condition.

 

To be clear the Est_Id will always have a non null value when doing this insert, while the EstDtl_Id will be null for an insert as a value is generated by the Database 

Share this post


Link to post

Sorry - missed one of your points. Both Est_Id and EstDtl_Id are in the query (as a result of select b.*). And you are of course correct that the change to ARequest is useless.

 

So I have been trying to determine where I went wrong, by starting up a new minimal project, and then adding on an FDUpdateSQL and then an OnUpdateRecord. Nothing I do allows records to be inserted into the EstDtl table.

 

I think I have followed all of your suggestions, The EstDtl table has only 3 fields that are important, Est_Id which is required, EstDtl_Id which is a autogenerated field, and EsdDtlDsc which is a required field. All other can be null.

The idea of the app is that alist of all the costcentre descriptions is on the left and a set of edits is on the right allowing maintenance to the EstDtl fields. 

The EstDtl table has only 3 fields that are important, Est_Id which is required, EstDtl_Id which is a autogenerated field, and EsdDtlDsc which is a required field. All other can be null.

 

So my assumption is that if I have a stringgrid with two fields (CscDsc, and EstDtlDsc) and a memo for EstDtlDsc each linked by livebindings to the Query fields then any change to the memo would trigger either an update (if the EstDtl already exists or an insert when it does not. 

However in the OnUpdateRecord I consistently get 3 calls when any change is made to the memo and regardless of if it should be an insert or an update - they are always  (arLock arUpdate and arUnlock)

By debugging the OnUpdateRecord (when I expect an insert) I can see the old values for Est_Id, EstDtl_Id, and EstDtlDsc are null, while the new fields are 1, null and some text, so that all looks correct. 

 

The Query has an SQL string of   

select b.*, a.csc_id as refcsc_id, a.cscdsc as cscdsc, a.cstpls as refcstpls, a.gstinc as refgstinc, a.gstpct  as refgstpct from  csc a left join estdtl b on a.csc_id = b.csc_id and b.est_id = !est_id

 

The UpdateSQL has an insert string of:

INSERT INTO ESTDTL
(EST_ID, ESTDTL_ID, CSC_ID, ESTDTLDSC, CSTPLS, GSTINC, 
  GSTPCT, QTYCLC, QTY, CST, GST, 
  SLE, VAL)
VALUES (:NEW_EST_ID, :NEW_ESTDTL_ID, :NEW_CSC_ID, :NEW_ESTDTLDSC, :NEW_CSTPLS, :NEW_GSTINC, 
  :NEW_GSTPCT, :NEW_QTYCLC, :NEW_QTY, :NEW_CST, :NEW_GST, 
  :NEW_SLE, :NEW_VAL)
RETURNING ESTDTL_ID, ESTDTLMNTDTE

I also attach the project directory in case it helps (minus the exe for size). Happy to also provide the database (1mb testing only) if its any use. Its a Firebird 3.0 db.

 

One thing to note is that there is a property CountUpdatedRecords of the UpdateOptions which gets rid of this error - but still nothing is written, it just seems to cache the change and keep trying to apply them.

Thanks again for your help.

testfirebird.zip

Share this post


Link to post

The modify SQL should look something like this:

 

UPDATE OR INSERT INTO ESTDTL
(EST_ID, CSC_ID, ESTDTLDSC, CSTPLS, GSTINC, 
  GSTPCT, QTYCLC, QTY, CST, GST, 
  SLE, VAL)
VALUES (:NEW_EST_ID, :NEW_CSC_ID, :NEW_ESTDTLDSC, :NEW_CSTPLS, :NEW_GSTINC, 
  :NEW_GSTPCT, :NEW_QTYCLC, :NEW_QTY, :NEW_CST, :NEW_GST, 
  :NEW_SLE, :NEW_VAL)
MATCHING (EST_ID, ESTDTLDSC)  
RETURNING ESTDTL_ID, ESTDTLMNTDTE

 

Edited by Olli73

Share this post


Link to post
5 hours ago, BushAl said:

Sorry - missed one of your points. Both Est_Id and EstDtl_Id are in the query (as a result of select b.*).

And this was my fault: You had a "b.*", not an "a.*". :classic_rolleyes:

Share this post


Link to post

Thank you very much Olli73 - that looks like its working bar some field validation.  I will sort that in the morning (Australia time).

 

Now why didnt I think of the Update or Insert ....?

 

Thanks again for your valuable help

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×