You are creating an ASP.NET application for your company. The company data is stored in a Microsoft SQL Server 6.5

database. Your application generates accounting summary reports based on transaction tables that contain million of rows.

You want your application to return each summary report as quickly as possible. You need to configure your application to

connect to the database and retrieve the data in a away that achieves this goal.

What should you do? choose a or b

a. Use a SqlConnection object to connect to the database, and use a SqlCommand object to run a stored <br>
procedure that returns the dat

b. Use an OleDbConnection object to connect to the database, and use an OleDbCommand <br>object to run a stored procedure that returns the data.