Answer Posted / devender kumar
SqlDataAdapter is a class of ado.net . This class can't be
inherited. It acts as a interface between our aplication
and database. The commonly used method of this class is Fill
() method which is used to fill the DataTable/DataSet with
the data fetched by query from the database.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a viewstate?
Explain the difference between asp.net mvc and asp.net webforms
What is the use of autowireup in asp.net?
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
What is the base class from which web forms are inherited?
Explain the main function of url routing system in asp.net mvc? : asp.net mvc
Differentiate between structure and class.
What is the significance of proxy user?
Will session work if cookies is disabled?
How many types of cookies are available in asp?
Can asp.net work on an nt server?
What is inheritance and an how it be used, example with an example?
To display data in a Repeater control which template you provide?
Explain the different types of directives in .net?
What is the difference between ASP.NET Webforms and ASP.NET MVC?