ADO RecordSet methods are independent of FWH version and they behave the same across all versions of FWH.
Use oRs:Update() method ( not Save() method ) to save any changes in the data.
There are two ways of using.
1)
oRs:Fields( "city" ):Value := "London"
oRs:Fields( "Age" Â ):Value := 34
oRs:Update() Â // writes the above changes to the server.
2)
oRs:Update( { "city", "age" }, { "London", 34 } )
// This changes and values and also writes the changes to the server.
Method oRs:Save()
This method is used to save contents of RecordSets to Disk in either XML format of ADTG (micorosoft proprietory) format
oRs:Save( "c:\folder\filename.adtg", 0 )
oRs:Save( "c:\folder\filename.xml", Â 1 )
Here you find all datas and methods of ADO RecordSet object:
https://www.w3schools.com/asp/ado_ref_recordset.asp
Better we completely go though this tutorial, before working with ADO
https://www.w3schools.com/asp/ado_intro.asp