[sqlalchemy] Re: dictionaries collection_class

2007-06-16 Thread Ron
Now I'm having trouble with updating values in AttributeDict: so obj.attrs['key'] = 'somevalue' (works) obj.attrs['key'] = 'newvalue'(second one doesn't work) I get this error: File /usr/local/lib/python2.4/site-packages/SQLAlchemy-0.3.8- py2.4.egg/sqlalchemy/orm/mapper.py, line 679,

[sqlalchemy] Re: dictionaries collection_class

2007-06-16 Thread Ron
Now I'm having trouble with updating values in AttributeDict: so obj.attrs['key'] = 'somevalue' (works) obj.attrs['key'] = 'newvalue'(second one doesn't work) I get this error: File /usr/local/lib/python2.4/site-packages/SQLAlchemy-0.3.8- py2.4.egg/sqlalchemy/orm/mapper.py, line 679,

[sqlalchemy] Re: MSSQL: using pyODBC

2007-06-16 Thread Paul Johnston
Che, trying SA with MSSQL Express through unixODBC/pyODBC encountered the following problem: Well, your test script works fine for me on Windows, but you probably knew that already. You should expect to hit a lot of problems using MSSQL from Unix. For now, I suggest you have a go with

[sqlalchemy] Re: dictionaries collection_class

2007-06-16 Thread jason kirtland
Ron wrote: Now I'm having trouble with updating values in AttributeDict: so obj.attrs['key'] = 'somevalue' (works) obj.attrs['key'] = 'newvalue'(second one doesn't work) I get this error: File /usr/local/lib/python2.4/site-packages/SQLAlchemy-0.3.8-