Friday, March 24, 2017

What is DataReader in ADO.NET?

DataReader is a connected, read-only and forward dataset. We cannot write to database using datareader. It helps to sort,search and filter dataset.

No comments:

Post a Comment

Call a function in child component from parent component in React

Consider the following parent component class Parent extends React.Component { constructor(props) { super(props);         thi...