From: Martin d'A. <Mar...@s2...> - 2004-12-02 22:13:29
|
> 1. caching of newly created objects (inserts) > 2. Avoid issuing the subseqent select to initialize newly created > objects (_init() calls selectOne()) > > Ryan Harper The purpose of SQLObject._init() seems to be the initialization of the instance member values. To do that, it needs to fetch the data from the database. But since this is called on object creation, the data should be known without going to the database. Martin |