How to check if a datareader is closed or opened ?
IsClosed() Read more »
foreach(DataTable thisTable in myDataSet.Tables){ // For each row, print the values of each column. foreach(DataRow myRow in thisTable.Rows){ Read more »
Reads XML schema and data into the DataSet. Read more »
Read GetString GetInt32 while (myReader.Read()) Console.WriteLine(”\t{0}\t{1}”, myReader.GetInt32(0), myReader.GetString(1)); myReader.Close(); Read more »
You can use the ADO.NET DataReader to retrieve a read-only, forward-only stream of data from a database. Using the DataReader can increase application performance... Read more »
• System.Data.OleDb – classes that make up the .NET Framework Data Provider for OLE DB-compatible data sources. These classes allow you to connect to an... Read more »
SQLClient .NET classes are highly optimized for the .net / sqlserver combination and achieve optimal results. The SqlClient data provider is fast. It’s faster... Read more »
In a DataSet that contains multiple DataTable objects, you can use DataRelation objects to relate one table to another, to navigate through the tables, and to return... Read more »
SqlConnection nwindConn = new SqlConnection(”Data Source=localhost; Integrated Security=SSPI;” + “Initial Catalog=northwind”); nwindConn.Open(); Read more »
o ADO.NET Does Not Depend On Continuously Live Connections o Database Interactions Are Performed Using Data Commands o Data Can Be Cached in Datasets o ... Read more »
ASP.Net is an “environment”, and VB.Net is a programming language. You can write ASP.Net pages (called “Web Forms” by Microsoft) using VB.Net... Read more »
Custom Controls can be created in either of the following 3 methods. 1. Creating as a composite control : This method uses and combines the existing controls to... Read more »
RequiredField Validator Control,Range Validator Control, RegularExpression Validator Control,Custom Validator Control and Validation Summary Control are provided... Read more »
AutoPostBack is built into the form-based server controls, and when enabled, automatically posts the page back to the server whenever the value of the control in... Read more »
Using the Built-In Paging Controls To use default paging, you set properties to enable paging, set the page size, and specify the style of the paging controls. Paging... Read more »