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
Where is adodb dll located?
What is ado.net architecture?
Which database is the ado.net sql connection object designed for?
What do you know about ado.net's methods?
How do I delete a row from a DataTable?
Which is the feature of ado.net?
Which method is used by command class to execute SQL statements that return single value?
What is oledb connection?
What is the full form of ado.net?
What is the difference between data grid and data repeater?
What is ado in agriculture?
What is microsoft ole db provider for sql server?
What is connection string?
What are the different layers of ado.net?
What is the difference between OLEDB Provider and SqlClient?