Expand Minimize
This topic has not yet been rated - Rate this topic

SqlDataSourceMode Enumeration

Specifies whether a SqlDataSource or AccessDataSource control retrieves data as a IDataReader or DataSet.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)
public enum class SqlDataSourceMode
Member nameDescription
DataReaderRetrieves data from the underlying data storage as an IDataReader
DataSetRetrieves data from the underlying data storage into a DataSet structure.

The SqlDataSourceMode enumeration is used by the SqlDataSource and AccessDataSource controls to describe the data retrieval mode that the data source control uses when the Select method is called. When the DataSourceMode property is set to DataSet, data is loaded into a DataSet structure. This enables scenarios where user interface controls such as GridView offer sorting and paging capabilities. When the DataSourceMode property is set to DataReader, data is retrieved by an IDataReader object, which is a read-only, forward-only cursor.

The SqlDataSourceMode enumeration is only used to describe how the Select command retrieves data; it has no effect on other operations the SqlDataSource control performs, such as Insert, Update, or Delete.

TopicLocation
How to: Connect to an ODBC Database Using the SqlDataSource ControlBuilding ASP .NET Web Applications
How to: Access SQL Server as a Local UserBuilding ASP .NET Web Applications
How to: Connect to an ODBC Database Using the SqlDataSource ControlBuilding ASP .NET Web Applications
How to: Access SQL Server as a Local UserBuilding ASP .NET Web Applications
How to: Connect to an ODBC Database Using the SqlDataSource Control (Visual Studio)Building ASP .NET Web Applications in Visual Studio

The following code example demonstrates how to set the DataSourceMode of a SqlDataSource control to DataReader when retrieving a simple list of items from a SQL Server database into a ListBox control.

No code example is currently available or this language may not be supported.

The following code example demonstrates how to set the DataSourceMode to DataSet when retrieving a set of data into a GridView control that has sorting enabled.

No code example is currently available or this language may not be supported.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.