[sqlalchemy] sqlalchemy 0.8.2 postgres dialects array append does not dirty

2013-07-31 Thread notedit
hi, i just come accross this, i use sqlalchemy 0.7.8 before these all work. when i update to 0.8.2 this does not work. -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To unsubscribe from this group and stop receiving emails from it, send an

Re: [sqlalchemy] sqlalchemy 0.8.2 postgres dialects array append does not dirty

2013-07-31 Thread Michael Bayer
see http://docs.sqlalchemy.org/en/rel_0_8/changelog/migration_08.html#mutabletype On Jul 31, 2013, at 4:02 AM, notedit note...@gmail.com wrote: hi, i just come accross this, i use sqlalchemy 0.7.8 before these all work. when i update to 0.8.2 this does not work. -- You received

Re: [sqlalchemy] sqlalchemy 0.8.2 postgres dialects array append does not dirty

2013-07-31 Thread notedit
yes i have noticed these. but i still do not know how to use these with array. can you give me some example code? 2013/7/31 Michael Bayer mike...@zzzcomputing.com see http://docs.sqlalchemy.org/en/rel_0_8/changelog/migration_08.html#mutabletype On Jul 31, 2013, at 4:02 AM, notedit

Re: [sqlalchemy] sqlalchemy 0.8.2 postgres dialects array append does not dirty

2013-07-31 Thread Michael Bayer
I dont' have an example specific to ARRAY handy, did you read the documentation at http://docs.sqlalchemy.org/en/rel_0_8/orm/extensions/mutable.html ? On Jul 31, 2013, at 10:12 AM, notedit note...@gmail.com wrote: yes i have noticed these. but i still do not know how to use these with

Re: [sqlalchemy] sqlalchemy 0.8.2 postgres dialects array append does not dirty

2013-07-31 Thread notedit
yes i have readed the doc, but i just can not make it work with ARRAY. 2013/7/31 Michael Bayer mike...@zzzcomputing.com I dont' have an example specific to ARRAY handy, did you read the documentation at http://docs.sqlalchemy.org/en/rel_0_8/orm/extensions/mutable.html ? On Jul 31, 2013,

Re: [sqlalchemy] sqlalchemy 0.8.2 postgres dialects array append does not dirty

2013-07-31 Thread Michael Bayer
can you pass along a short code example? I can try to edit it. On Jul 31, 2013, at 10:27 AM, notedit note...@gmail.com wrote: yes i have readed the doc, but i just can not make it work with ARRAY. 2013/7/31 Michael Bayer mike...@zzzcomputing.com I dont' have an example specific to

Re: [sqlalchemy] sqlalchemy 0.8.2 postgres dialects array append does not dirty

2013-07-31 Thread Michael Bayer
here you go, note MutableList is copied from MutableDict except adapted for lists, works as advertised (you'd need to add other list methods besides append()): from sqlalchemy import * from sqlalchemy.orm import * from sqlalchemy.ext.declarative import declarative_base from

Re: [sqlalchemy] sqlalchemy 0.8.2 postgres dialects array append does not dirty

2013-07-31 Thread notedit
thanks micheal, 2013/8/1 Michael Bayer mike...@zzzcomputing.com here you go, note MutableList is copied from MutableDict except adapted for lists, works as advertised (you'd need to add other list methods besides append()): from sqlalchemy import * from sqlalchemy.orm import * from