feature of ADO.Net

Answer Posted / tejas mer

ADO.Net provides the base classes to access the or deal with DataBase.

The classes or namespaces depends on the type of provider we are using (like Sytem.Data.SqlClient for SQL Sever or System.Data.Oracleclient) for Oracle...

It also contains few common classes like
DBConnection
DBCommand to establish connection and execute commands respectively..

Below are the list of the classes widly used from ADO.NEt

DataSet
SQLConnection
SQLCommand
SQLDataAdapter
DataTable
DataView
SQLDataReader


Few methods widly used

DataSet.AcceptChanges();
Dataset.RejectChanges();

DataReader.ExecuteNonQuery();
DataReader.ExecuteScalar();
DataReader.ExecuteReader();


DataAdapter.Fill(DataSet);

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is ole access?

539


Explain all the classes those are used for database connections between sql server and asp.net?

500


What are the difference between readonly vs. Const?

492


Explain the difference in an abstract class and an interface?

489


Explain the differences between oledb sql server, oledbdotnet provider?

544






Describe connection object in ado.net

531


Describe datareader object of ado.net with example.

502


How to perform sorting on a table in ADO.NET?

543


What is ado.net objects?

509


What is ado and rdo?

492


What are two important objects of ADO.Net?

543


What is the advantage of ado.net?

533


What is an ado?

512


What is the maximum pool size in ado.net connection string?

490


What is difference between executequery and executeupdate?

492