Re: simpleentity insert
B.Kamer <[email protected]>
| Newsgroups | gmane.comp.lib.binarycloud.devel |
|---|---|
| Message-ID | <[email protected]> |
fyi On Feb 16, 2005, at 13:49, B.Kamer wrote: > hi, to answer myself :p > > is it possible to expand the functionality of simpleentity in such a > way that after an insert the new pk value is automatically loaded into > the object... > > I see two possibilities: > a query LAST INSERTED ID or use Creoles id generator, what would be > best/preffered? i found a method in SimpleEntity that does the trick... > > It can be done in SimpleEntity or the extended classes depending > whether this functionality is wanted in SimpleEntity > > Any thoughts? add this after the insert in your entity $this->id = $this->_original = $this->getAutogeneratedPk(); > Thanks thanks