I have a custom sql function in postgresql that needs to be applied to
some data that I would like to insert.
The SQL for this might look like:

INSERT INTO table (col1, col2, col3) VALUES ('foo', 3,
custom_function('cheese'));

How do I do this with sqlalchemy's lower-level table.insert() support?

I've been using:

conn.execute( table.insert(), **row )


-- 
Jon

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.

Reply via email to