It provides a forward-only, read-only, connected recordset.
It is most efficient to use when data need not to be updated, and requires forward only traverse. In other words, it is the fastest method to read data.
Example:
//Reading data
while (rdr.Read())
{
//Display data
string contact = (string)rdr["ContactName"];
string company = (string)rdr["CompanyName"];
string city = (string)rdr["City"];
}
It is most efficient to use when data need not to be updated, and requires forward only traverse. In other words, it is the fastest method to read data.
Example:
- Filling dropdownlistbox.
- Comparing username and password in database.
//Reading data
while (rdr.Read())
{
//Display data
string contact = (string)rdr["ContactName"];
string company = (string)rdr["CompanyName"];
string city = (string)rdr["City"];
}
No comments:
Post a Comment