[sqlalchemy] Updating field by applying transformation function to current field value

2010-06-09 Thread bartomas
Hi, I'm new to SqlAlchemy. I'd like to find the simplest way of updating the fields of a table by applying a transformation function to the current value of the field. I've tried the following: ## Code snippet engine = create_engine('mysql://root:t...@localhost:3306/Test1') metadata =

Re: [sqlalchemy] Updating field by applying transformation function to current field value

2010-06-09 Thread Conor
On 06/09/2010 07:58 AM, bartomas wrote: Hi, I'm new to SqlAlchemy. I'd like to find the simplest way of updating the fields of a table by applying a transformation function to the current value of the field. I've tried the following: ## Code snippet engine =