>> of course...just return the default execution as illustrated at 
>> http://www.sqlalchemy.org/docs/core/interfaces.html#sqlalchemy.interf... .

Mike,

     I want to return from the below method *without* actually
executing the insert. I think if I just return the default execution
as below, then it would execute insert right ( I tested it)?  Let me
know if I am missing something...



===========================================================
class MyProxy(ConnectionProxy):
    def execute(self, conn, execute, clauseelement, *multiparams,
**params):
        return execute(clauseelement, *multiparams, **params)
===========================================================

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

Reply via email to