Where is the processing done - VS2005 Web development

A

AAJ

Hi all

I use datagrids bound to Objectdatasources in turn bound to datatables

Every thing works Ok, but I'm curious on how it actually works.

I have a view in my SQL Server 2000 database. i.e. vw_KPITurnAround

I connect to the view via a XSD data table with something like

SELECT ... FROM vw_KPITurnAround


If I want to filter the data then within the data table I add a table
adapter i.e.

SELECT ...FROM dbo.vw_KPITurnAround WHERE (InspectionDate
BETWEEN @StartDate AND @EndDate)

and pass the startDate and endDate parameters via my business code.

What I would like to know is

is the string in the table adapter passed to the SQL server and the
processing takes place there

e.g. SELECT ...FROM dbo.vw_KPITurnAround WHERE (InspectionDate
BETWEEN @StartDate AND @EndDate) ->@StartDate AND @EndDate passed to
Database server

or

is all the data in the table brought back in one hit to my application,

i.e.
SELECT ... FROM vw_KPITurnAround

and the processing between dates done here?

thanks for any info

Andy
 
A

AAJ

On looking further with sql profiler it looks as my parameters are all
passed to the SQL Server and the processing is done there

can any one confirm this is true

cheers again

Andy
 
A

AAJ

Many thanks

Andy

Eliyahu Goldin said:
That's right, the selects are run against the database. If you filter with
the FilterExpression property, it will take place on the web server inside
the application.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


AAJ said:
On looking further with sql profiler it looks as my parameters are all
passed to the SQL Server and the processing is done there

can any one confirm this is true

cheers again

Andy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,020
Latest member
GenesisGai

Latest Threads

Top