[sqlalchemy] Re: Postgres MD Auth

2007-06-07 Thread Techniq
On Jun 7, 3:10 am, Karsten Hilbert [EMAIL PROTECTED] wrote: On Thu, Jun 07, 2007 at 12:20:46AM -, Techniq wrote: Any reason why I can auth with psql and not the sqlachemy.dburi in Pylons? Yes, likely. I can see that the user, password, host, port are all passed correctly

[sqlalchemy] Re: like doesn't work with objects

2007-06-06 Thread Techniq
On Jun 6, 12:37 am, Mike Orr [EMAIL PROTECTED] wrote: On 6/5/07, Techniq [EMAIL PROTECTED] wrote: I'm going through the wiki cookbook http://docs.pythonweb.org/display/pylonscookbook/SQLAlchemy+for+peopl... and I'm discovering that even though 'model.class.c.column_name.like

[sqlalchemy] Postgres MD Auth

2007-06-06 Thread Techniq
Any reason why I can auth with psql and not the sqlachemy.dburi in Pylons? I can see that the user, password, host, port are all passed correctly. These are the same parameters I use with psql to connect. I'm connecting from the same machine in both cases. psql -U username -h ip address

[sqlalchemy] like doesn't work with objects

2007-06-05 Thread Techniq
I'm going through the wiki cookbook http://docs.pythonweb.org/display/pylonscookbook/SQLAlchemy+for+people+in+a+hurry and I'm discovering that even though 'model.class.c.column_name.like' is available it doesn't perform a LIKE in the query. from 'paster shell' In [20]: