On Wed, 2003-08-06 at 09:07, Dave Poirier wrote:
> I've noticed that 2 (well 3, but commit is ok) queries gets done
> everytime I create a new record in the database:
[...]
> Is there a way to tell SQLObject not to perform this select everytime I
> create a new Smdr_uniformized object?
No, afraid not. At some point this should be fixed, as it obviously is
redundant, but currently all your arguments to .new() are thrown away,
and the column values have to be fetched to create the object that is
returned from .new().
Ian
|