Fixed
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Marc Ackermann
Marc AckermannPriority
Labels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Created 11 June 2017 at 12:45
Updated 8 May 2020 at 19:59
Resolved 4 September 2017 at 08:15
So I have this code to update a dataset:
aTest = entityLoadByPK('artist', 1);
aTest.setType(5);
entitySave(aTest);
OrmFlush();
It has no effect to the database! The record is not updated.
Now I deselect the checkbox in Lucee Server Admin under
ORM / "Flush at request end"
and now the data is saved!