What are the methods of DataSet? By Mallikarjun A 11:56:00 Add Comment It is used in disconnected architecture. It represent records in the form of Database table (Row and Column) format. It stores record of ... Read More
What is the DataReader in ADO.Net? By Mallikarjun A 11:55:00 Add Comment DataReader holds only one table at a time. It only provides read only access mode and cannot write data. It is not required local storag... Read More
What is DataTable in ADO.NET? By Mallikarjun A 11:54:00 Add Comment DataTable represents a single table in a database. In this show row and column. DataSet is a collection of data tables. In this store d... Read More
Use of DataSet object in ADO.NET? By Mallikarjun A 11:52:00 Add Comment It is used in a disconnected architecture. Provides lower performance. A DataSet object has read/write access. A DataSet object supports... Read More
What is Connection Pooling in ADO.NET? By Mallikarjun A 11:51:00 Add Comment Connection pooling is the ability of reusing your connection to the database. This means if you enable Connection pooling in the connecti... Read More
What is SqlCommand Object? By Mallikarjun A 16:53:00 Add Comment What is SqlCommand Object? The SqlCommand carries the SQL statement that needs to be executed on the database. SqlCommand carries the com... Read More
What is the DataAdapter Object in ADO.NET? By Mallikarjun A 16:55:00 Add Comment What is the DataAdapter Object in ADO.NET? A Data Adapter represents a set of data commands and a database connection to fill the datase... Read More
Use of DataSet object in ADO.NET? By Mallikarjun A 16:56:00 Add Comment Use of DataSet object in ADO.NET? It is used in a disconnected architecture. Provides lower performance. A DataSet object has read/w... Read More
LINQ JOIN interview questions for freshers By Mallikarjun A 14:13:00 Add Comment The JOIN clause is one of the most complex and potentially confusing aspects of LINQ. A thorough understanding of the JOIN clause can help... Read More