Hello,
I'm very excited about the new SqlDataSource in asp.net 2.0.

I have written a wuite long sql script on my SqlDatasource UpdateCommand.

I want to see wheater it actually does what it was meant to do.

Is there any way i can do this?

Many thanks
JJ

RE: Is there a way i can debug through the Sql script in my SqlDataSou by NoSpamMgbworld

NoSpamMgbworld
Thu Mar 30 10:28:03 CST 2006

This is a wonderful "it depends" answer type of question.

If you are using VS 2005 with SQL 2005 (Express can work), you can
automagically step through a stored procedure directly from code. It is
easiest if you have code projects.

If not, you can step through any supported database's sprocs by opening the
sproc and choosing intervening at the point of calling (supplying values to
the sproc and running in the GUI). This is not automagic.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************


"jens Jensen" wrote:

>
> Hello,
> I'm very excited about the new SqlDataSource in asp.net 2.0.
>
> I have written a wuite long sql script on my SqlDatasource UpdateCommand.
>
> I want to see wheater it actually does what it was meant to do.
>
> Is there any way i can do this?
>
> Many thanks
> JJ
>
>
>

Re: Is there a way i can debug through the Sql script in my SqlDataSou by jens

jens
Thu Mar 30 14:15:51 CST 2006

Many thanks
JJ