Re: [sqlalchemy] will changing an attribute to the same value trigger a commit?

2013-07-09 Thread Сергей Панов
I saw that too when you call setattr alchemy thinks that attr changes. Dont matter if value is the same. I saw it on the third party app. 2013/7/9 Chris Withers ch...@simplistix.co.uk What does 'changed' mean? -- You received this message because you are subscribed to the Google Groups

Re: [sqlalchemy] Connecting to PostgreSQL 9.1 on Oracle Virtual Box 4.2 / Ubuntu 13.04/64

2013-06-23 Thread Сергей Панов
What does psql say if yuo trying to connect on GUEST from HOST? 2013/6/24 monosij.for...@gmail.com Hello - I am running PostgreSQL 9.1 on an Oracle VirtualBox 4.2. Host/Guest: Ubuntu 13.04 / 64 From HOST port 15432 is forwarded to port GUEST port 5432 to connect into PG on the GUEST.

Re: [sqlalchemy] Testing sqlalchemy applications :p:

2013-04-23 Thread Сергей Панов
What do sqlalchemy users usually use for testing? I am willing to learn other ways to do this that are more suited to the packages. thomas we use unittest you can see how to setup session here https://github.com/vice-versa/sacrud/blob/master/sacrud/tests/__init__.py