System.Web
2.0.0.0
System.Web.UI.WebControls.SqlDataSourceView
The class is intended primarily to be used by data-bound controls and not as a programmable object in page code.
The class is provided because Microsoft Access is a file-based database system and has several unique characteristics that set it apart from other SQL-based relational database products that the control and classes are used with.
Supports the control and provides an interface for data-bound controls to perform data retrieval using Structured Query Language (SQL) against a Microsoft Access database.
Constructor
The object is used by the control to access the parameters in the and collections when retrieving data.
Initializes a new instance of the class setting the specified control as the owner of the current view.
The data source control with which the is associated.
A unique name for the data source view, within the scope of the data source control that owns it.
The current .
2.0.0.0
Method
2.0.0.0
System.Collections.IEnumerable
The object overrides the method to ensure that the property of its associated control is set before retrieving data.
Before the method is performed, the method is called to raise the event. You can handle the event to examine the values of the parameters and to perform any preprocessing before a data retrieval operation.
To perform the data retrieval, the object builds an object using the text and any associated properties. Then, the object executes the object against the underlying data storage. After the operation completes, the method is called to raise the event. You can handle the event to examine any return values and error codes and to perform any post-processing.
If the property is set to the value and caching is enabled, the retrieves data from and saves data to the cache during the data retrieval operation. The cache is created, discarded, or refreshed, based on the caching behavior that is specified by the combination of the and properties.
If the property is set to the value and a property has been specified, the property is evaluated along with any supplied properties and the resulting filter is applied to the list of data during the operation.
Retrieves data from the underlying data storage using the SQL string in the property and any parameters in the collection.
An of data rows.
A that is used to request operations on the data beyond basic data retrieval.