Search found 1 match
- 30.03.2015, 16:22
- Forum: ZeosLib 7.1 stable Forum
- Topic: Error dataset.post when cachedupdates = true
- Replies: 0
- Views: 1123
Error dataset.post when cachedupdates = true
Hi, I am using Zeos Zeos 7.1.3-stable with Delphi 2010 and Firebird 2.5. I have the following code: ZQuery1.CachedUpdates := true; ZQuery1.Open; ZQuery1.First; if not ZQuery1.Eof then begin Zquery1.Insert; Zquery1.FieldByName('ID').AsInteger := 1; Zquery1.FieldByName('MACHINECODE').AsString := 'A01'...