[sqlalchemy] Install error

2006-11-28 Thread Murat Ozsoyler
Hi, I recently updated the sources from SVN today. But I encountered the following error message when installing. running install running bdist_egg Traceback (most recent call last): File setup.py, line 40, in ? classifiers = [ File c:\Python24\Lib\distutils\core.py, line 149, in

[sqlalchemy] Searching TEXT fields

2006-11-28 Thread José de Paula Eufrásio Júnior
What's the better form of doing that? To minize DB usage and stuff... -- José de Paula Eufrásio Júnior aka coredump http://core.eti.br --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to

[sqlalchemy] working with detached objects

2006-11-28 Thread [EMAIL PROTECTED]
i'd like to detach an object from a session, modify it, and reattach it to the session, with detection of the object's current state (modified), and added to the session's dirty set. i thought calling session.save_or_update, would do this but it resets the modification status of the object

[sqlalchemy] Re: working with detached objects

2006-11-28 Thread [EMAIL PROTECTED]
fwiw. using private methods on the session, calling session._attach( instance ) has the nesc. effects of reattaching to the session with the object marked in the session as dirty. [EMAIL PROTECTED] wrote: i'd like to detach an object from a session, modify it, and reattach it to the session,

[sqlalchemy] Re: Cascade performance

2006-11-28 Thread Daniel Miller
Daniel Miller wrote: Lately I've been noticing severe slowness when instantiating new SA objects... Oh yeah, I forgot to mention that many of my class constructors take a parent object as one of their arguments, which explains the slow instantiation. cascade_test.py demonstrates that the