Hello,
I need to get data out of sqlserver by running this stored procedure.
>From there I convert few fields and add the processed rows to a mysql
table that I have created.
How can I do the following in sqlalchemy? Is there a pythonic way?
Assuming I already have the database connection? What would be the
syntax to run a stroed procedure? And what object would the results be
in?
USE [Reports]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[assp_Report_DailyTransactions]
@start_date = N'07/01/2010',
@end_date = N'07/15/2010'
SELECT 'Return Value' = @return_value
Thanks,
Lucas
--
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.