This post by Scott Mitchell points his article where he discusses why he doesn’t use Datasets in ASP.NET Applications.
"According to A Speed Freak’s Guide to Retrieving Data in ADO.NET, the DataReader is roughly thirty times more performant than the DataSet."
[ Via Eric Wise's blog ]
May 3rd, 2005 | database, development, dotnet | 1 Comment
using System.Windows.Forms;
namespace Devintelligence
{
/// <summary>
/// ScrolledDataGrid.
/// </summary>
public class ScrolledDataGrid : DataGrid
{
public ScrolledDataGrid()
{
}
/// <summary>
/// scroll the grid to a particular row
/// </summary>
/// <param name="rowNumber"></param>
public void ScrollTo(int rowNumber)
{
if (this.DataSource != null)
{
GridVScrolled(this, new ScrollEventArgs(ScrollEventType.LargeIncrement, rowNumber));
}
}
}
}
April 25th, 2005 | database, development | 0 Comments
March 27th, 2005 | database, ORM, SQL | 0 Comments