Only rarely is there only one way to do something in MSSQL ;-)
Stored procedures can also be called simply by name, omitting the "EXEC":
EXEC procedure_foo <parms>
or
procedure_foo <parms>
and I believe they can also be called from within a subquery:
select * from (procedure_foo)
I think the EXEC-in-front case is probably our 90% use-case, and users can
re-write as needed.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---