oRs:EditBaseRecord, oRec:Save() problem
oRs:EditBaseRecord, oRec:Save() problem
I have explained the problem step by step as below:
Please, run the mariainv example of Mr. Rao
1. Open items and position the cursor on an item
2. Press the edit button and open the edit dialog
3. Now, when we are waiting here, another user has deleted the record that we are editing.
4. Edit the record. (Modify the name of the item)
5. Press Save button
6. Of course nothing happens.
7. Press the Save button again
8. oRec:Save() modified another record, since the pointer positioned on that record.
How can I overcome this problem. oRec:Save() returns false
but there is no any sql error. What can we do?
Please, run the mariainv example of Mr. Rao
1. Open items and position the cursor on an item
2. Press the edit button and open the edit dialog
3. Now, when we are waiting here, another user has deleted the record that we are editing.
4. Edit the record. (Modify the name of the item)
5. Press Save button
6. Of course nothing happens.
7. Press the Save button again
8. oRec:Save() modified another record, since the pointer positioned on that record.
How can I overcome this problem. oRec:Save() returns false
but there is no any sql error. What can we do?
- nageswaragunupudi
- Posts: 10733
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Been thanked: 11 times
- Contact:
Re: oRs:EditBaseRecord, oRec:Save() problem
We are looking into this.
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
- nageswaragunupudi
- Posts: 10733
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Been thanked: 11 times
- Contact:
Re: oRs:EditBaseRecord, oRec:Save() problem
Can you please make this modification in \fwh\source\classes\datarow.prg and test?
Please locate the following lines towards the end of method SaveOBJ()
Please comment out this line like this:
Can you please test after this change and provide your comments?
Please locate the following lines towards the end of method SaveOBJ()
Code: Select all | Expand
if !lSaved AEval( ::aData, { |a,i| a[ 2 ] := aSave[ i ] } ) endif
Please comment out this line like this:
Code: Select all | Expand
if !lSaved// AEval( ::aData, { |a,i| a[ 2 ] := aSave[ i ] } ) endif
Can you please test after this change and provide your comments?
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
Re: oRs:EditBaseRecord, oRec:Save() problem
Dear Rao,
The problem described in the link below came back
viewtopic.php?f=3&t=33908&start=15#p201244
The problem described in the link below came back
viewtopic.php?f=3&t=33908&start=15#p201244
- nageswaragunupudi
- Posts: 10733
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Been thanked: 11 times
- Contact:
Re: oRs:EditBaseRecord, oRec:Save() problem
Thanks for the feedback.
Now, please change the entire method SaveOBJ() in datarow.prg with this new method.
Can you please provide your comments after making this change?
Now, please change the entire method SaveOBJ() in datarow.prg with this new method.
Code: Select all | Expand
METHOD SaveOBJ() CLASS TDataRow local lSaved := .t. local lNetChanged := .f. local aSaveData := {} if ::lReadOnly .or. ! ::Modified() return .f. endif if __ObjHasMethod( ::uSource, "ROWPUT" ) aSaveData := AClone( ::aData ) ::RecNo := ::uSource:RowPut( ::aData, ::RecNo, .f., Self, @lSaved ) if ValType( lSaved ) != 'L' lSaved := .t. endif if lSaved ::aOrg := AClone( ::aData ) else AEval( ::aData, { |a,i| If( a[ 2 ] == ::aOrg[ i, 2 ], nil, lNetChanged := .t. ) } ) ::aOrg := AClone( ::aData ) if !lNetChanged AEval( ::aData, { |a,i| a[ 2 ] := aSaveData[ i, 2 ] } ) endif endif endifreturn lSaved
Can you please provide your comments after making this change?
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
Re: oRs:EditBaseRecord, oRec:Save() problem
The record pointer goes to the first record and changes all of the fields of oRec with the values of first record and I loose everything that I have typed.
- nageswaragunupudi
- Posts: 10733
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Been thanked: 11 times
- Contact:
Re: oRs:EditBaseRecord, oRec:Save() problem
This is what is happening in my tests:
If the save fails due to some reason like duplicated unique field, the record pointer does not change and edited values are not lost. They are retained.
If the save fails because the record is deleted by another user on the network, then the record pointer is moved to the next record and changes made by the user are lost, as it should be.
Can you explain what is happening in your case, step by step?
If the save fails due to some reason like duplicated unique field, the record pointer does not change and edited values are not lost. They are retained.
If the save fails because the record is deleted by another user on the network, then the record pointer is moved to the next record and changes made by the user are lost, as it should be.
Can you explain what is happening in your case, step by step?
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
Re: oRs:EditBaseRecord, oRec:Save() problem
Mr. Rao, since the oRec:Save() returns false the execution waits in the edit dialog.
In this case there is nothing to do in the edit dialog.
Instead of waiting in the edit dialog, may be we have to show an error message that says record has been deleted by another user and go back to browse.
In this case there is nothing to do in the edit dialog.
Instead of waiting in the edit dialog, may be we have to show an error message that says record has been deleted by another user and go back to browse.
Re: oRs:EditBaseRecord, oRec:Save() problem
I have made the following change in the EditItems function.
Instead of using oRec:Save() directly, I have add another function ItemSaved() and Ithink the problem solved.
I have used the original datarow.prg.
Of course some more lines like oRsItems:ReSync(), oBrw:RefreshCurrent() is needed.
Instead of using oRec:Save() directly, I have add another function ItemSaved() and Ithink the problem solved.
I have used the original datarow.prg.
Of course some more lines like oRsItems:ReSync(), oBrw:RefreshCurrent() is needed.
Code: Select all | Expand
static function EditItems( oRec ) ... // ACTION If( oRec:Save(), oDlg:End(), nil ) ACTION If( ItemSaved(oRec), oDlg:End(), nil )...return nil//----------------------------------------------------------------------------//static function ItemSaved(oRec) local lNotSavedButNoError := .F. local lSaved := .F. BEGIN SEQUENCE oCn:Execute( "BEGIN" ) IF !oRec:Save() IF oCn:nError = 0 //There is no Sql error. May be the item deleted by another user ??? lNotSavedButNoError := .T. ENDIF BREAK ENDIF oCn:Execute( "COMMIT" ) lSaved := .T. RECOVER oCn:Execute( "ROLLBACK" ) END SEQUENCE lSaved := lSaved .OR. lNotSavedButNoErrorreturn lSaved