Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1047611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:19:45+00:00 2026-05-16T16:19:45+00:00

I puzzled with understanding ADO.NET, after reading several articles I do not have a

  • 0

I puzzled with understanding ADO.NET, after reading several articles I do not have a clear idea what is perfomance consideration.

  • What is ADO.NET and what about perfomance considerations?
  • ADO.NET could be associated with SQL STORED PROCEDURES or are different things?

Thanks guys!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T16:19:46+00:00Added an answer on May 16, 2026 at 4:19 pm

    Think of Ado.net as a managed library that provides all the classes and functionality you need (and may use) to access external data sources. That’s the most simplest way of thinking of it. But since it’s not a separate library (because it’s included with the .net library) people tend to be confused. We could say it’s a library inside .net.

    A more thorough explanation can be found on Wikipedia.

    Stored procedure is part of a particular data store. Ado.net gives you the ability to call these stored procedures in a standardized way.

    An example from MSDN

    using (SqlConnection connection = new SqlConnection(connectionString))
    {
        // Create the Command and Parameter objects.
        SqlCommand command = new SqlCommand(queryString, connection);
        command.Parameters.AddWithValue("@pricePoint", paramValue);
    
        // Open the connection in a try/catch block. 
        // Create and execute the DataReader, writing the result
        // set to the console window.
        try
        {
            connection.Open();
            SqlDataReader reader = command.ExecuteReader();
            while (reader.Read())
            {
                Console.WriteLine("\t{0}\t{1}\t{2}", reader[0], reader[1], reader[2]);
            }
            reader.Close();
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
        Console.ReadLine();
    }
    

    You can see the use of Ado.net classes:

    • SqlConnection
    • SqlCommand and
    • SqlDataReader

    So Ado.net has all these provided for you, so you don’t have to reinvent the wheel every time you’d like to access external data sources (relational data bases, services etc.).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm puzzled about the execution order of the following: $('#home').live('pageinit',function(){ $('#test').hide(); $(function() { alert('test1');
I'm a little puzzled with QueryStrings and ActionResult I have a URL coming in
okay...im really puzzled with this. I want to create a regular asp.net webforms website
I'm a bit puzzled about the conditional operator. Consider the following two lines: Float
I am facing a situation that I have problem understanding... I am writing a
I'm puzzled about the correct use of bind variables with dates in Oracle. This
I am a bit puzzled with the Django object models. I have models like
I'm a bit puzzled to something we got here at the office. We have
I am completely puzzled. I was so sure that .NET shuts the whole application
I am puzzled because I cannot figure where my bug/problem is. I have a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.