AccessDataSourceView Members
.NET Framework 3.0
Supports the AccessDataSource control and provides an interface for data-bound controls to perform data retrieval using Structured Query Language (SQL) against a Microsoft Access database.
The following tables list the members exposed by the AccessDataSourceView type.
| Name | Description | |
|---|---|---|
| AccessDataSourceView | Initializes a new instance of the AccessDataSourceView class setting the specified AccessDataSource control as the owner of the current view. |
(see also
Protected Properties
)
Top
| Name | Description | |
|---|---|---|
| CancelSelectOnNullParameter | Gets or sets a value indicating whether a data retrieval operation is canceled when any parameter that is contained in the SelectParameters collection evaluates to a null reference (Nothing in Visual Basic).(inherited from SqlDataSourceView) |
| CanDelete | Gets a value indicating whether the SqlDataSourceView object that is associated with the current SqlDataSource control supports the delete operation.(inherited from SqlDataSourceView) |
| CanInsert | Gets a value indicating whether the SqlDataSourceView object that is associated with the current SqlDataSource control supports the insert operation.(inherited from SqlDataSourceView) |
| CanPage | Gets a value indicating whether the SqlDataSourceView object that is associated with the current SqlDataSource control supports the paging of retrieved data.(inherited from SqlDataSourceView) |
| CanRetrieveTotalRowCount | Gets a value indicating whether the SqlDataSourceView object that is associated with the current SqlDataSource control supports retrieving the total number of data rows, in addition to the set of data.(inherited from SqlDataSourceView) |
| CanSort | Gets a value indicating whether the SqlDataSourceView object that is associated with the current SqlDataSource control supports a sorted view on the retrieved data.(inherited from SqlDataSourceView) |
| CanUpdate | Gets a value indicating whether the SqlDataSourceView object that is associated with the current SqlDataSource control supports the update operation.(inherited from SqlDataSourceView) |
| ConflictDetection | Gets or sets the value indicating how the SqlDataSource control performs updates and deletes when data in a row in the underlying database changes during the time of the operation.(inherited from SqlDataSourceView) |
| DeleteCommand | Gets or sets the SQL string that the SqlDataSourceView uses to delete data from the underlying database.(inherited from SqlDataSourceView) |
| DeleteCommandType | Gets or sets a value indicating whether the text in the DeleteCommand property is a SQL statement or the name of a stored procedure.(inherited from SqlDataSourceView) |
| DeleteParameters | Gets the parameters collection containing the parameters that are used by the DeleteCommand property.(inherited from SqlDataSourceView) |
| FilterExpression | Gets or sets a filtering expression that is applied when the Select method is called.(inherited from SqlDataSourceView) |
| FilterParameters | Gets a collection of parameters that are associated with any parameter placeholders in the FilterExpression string.(inherited from SqlDataSourceView) |
| InsertCommand | Gets or sets the SQL string that the SqlDataSourceView object uses to insert data into the underlying database.(inherited from SqlDataSourceView) |
| InsertCommandType | Gets or sets a value indicating whether the text in the InsertCommand property is a SQL statement or the name of a stored procedure.(inherited from SqlDataSourceView) |
| InsertParameters | Gets the parameters collection containing the parameters that are used by the InsertCommand property.(inherited from SqlDataSourceView) |
| Name | Gets the name of the data source view.(inherited from DataSourceView) |
| OldValuesParameterFormatString | Gets or sets a format string to apply to the names of any parameters that are passed to the Delete or Update method. (inherited from SqlDataSourceView) |
| SelectCommand | Gets or sets the SQL string that the SqlDataSourceView object uses to retrieve data from the underlying database.(inherited from SqlDataSourceView) |
| SelectCommandType | Gets or sets a value indicating whether the text in the SelectCommand property is a SQL query or the name of a stored procedure.(inherited from SqlDataSourceView) |
| SelectParameters | Gets the parameters collection containing the parameters that are used by the SelectCommand property.(inherited from SqlDataSourceView) |
| SortParameterName | Gets or sets the name of a stored procedure parameter that is used to sort retrieved data when data retrieval is performed using a stored procedure.(inherited from SqlDataSourceView) |
| UpdateCommand | Gets or sets the SQL string that the SqlDataSourceView object uses to update data in the underlying database.(inherited from SqlDataSourceView) |
| UpdateCommandType | Gets or sets a value indicating whether the text in the UpdateCommand property is a SQL statement or the name of a stored procedure.(inherited from SqlDataSourceView) |
| UpdateParameters | Gets the parameters collection containing the parameters that are used by the UpdateCommand property.(inherited from SqlDataSourceView) |
| Name | Description | |
|---|---|---|
| Events | Gets a list of event-handler delegates for the data source view.(inherited from DataSourceView) |
| IsTrackingViewState | Gets a value indicating whether the SqlDataSourceView object is saving changes to its view state.(inherited from SqlDataSourceView) |
| ParameterPrefix | Gets the string that is used to prefix a parameter placeholder in a parameterized SQL query.(inherited from SqlDataSourceView) |
(see also
Protected Methods
)
Top
| Name | Description | |
|---|---|---|
| Delete | Overloaded. Performs a delete operation using the DeleteCommand SQL string and any specified delete parameters. (inherited from SqlDataSourceView) |
| Equals | Overloaded. Determines whether two Object instances are equal. (inherited from Object) |
| GetHashCode | Serves as a hash function for a particular type. (inherited from Object) |
| GetType | Gets the Type of the current instance. (inherited from Object) |
| Insert | Overloaded. Performs an insert operation using the InsertCommand SQL string and any specified insert parameters. (inherited from SqlDataSourceView) |
| ReferenceEquals | Determines whether the specified Object instances are the same instance. (inherited from Object) |
| Select | Overloaded. Retrieves data from the underlying database using the SelectCommand SQL string and any parameters that are in the SelectParameters collection. (inherited from SqlDataSourceView) |
| ToString | Returns a String that represents the current Object. (inherited from Object) |
| Update | Overloaded. Performs an update operation using the UpdateCommand SQL string and any specified update parameters. (inherited from SqlDataSourceView) |
| Name | Description | |
|---|---|---|
| ExecuteDelete | Performs a delete operation using the DeleteCommand SQL string, any parameters that are specified in the DeleteParameters collection, and the values that are in the specified keys and oldValues collections. (inherited from SqlDataSourceView) |
| ExecuteInsert | Performs an insert operation using the InsertCommand SQL string, any parameters that are specified in the InsertParameters collection, and the values that are in the specified values collection. (inherited from SqlDataSourceView) |
| ExecuteSelect | Overridden. Retrieves data from the underlying data storage using the SQL string in the SelectCommand property and any parameters in the SelectParameters collection. |
| ExecuteUpdate | Performs an update operation using the UpdateCommand SQL string, any parameters that are in the UpdateParameters collection, and the values that are in the specified keys, values, and oldValues collections. (inherited from SqlDataSourceView) |
| Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (inherited from Object) |
| LoadViewState | Restores the previously saved view state for the data source view. (inherited from SqlDataSourceView) |
| MemberwiseClone | Creates a shallow copy of the current Object. (inherited from Object) |
| OnDataSourceViewChanged | Raises the DataSourceViewChanged event. (inherited from DataSourceView) |
| OnDeleted | Raises the Deleted event after the SqlDataSource control has completed a delete operation. (inherited from SqlDataSourceView) |
| OnDeleting | Raises the Deleting event before the SqlDataSource control attempts a delete operation. (inherited from SqlDataSourceView) |
| OnFiltering | Raises the Filtering event before the SqlDataSource control filters the results of a select operation. (inherited from SqlDataSourceView) |
| OnInserted | Raises the Inserted event after the SqlDataSource control has completed an insert operation. (inherited from SqlDataSourceView) |
| OnInserting | Raises the Inserting event before the SqlDataSource control attempts an insert operation. (inherited from SqlDataSourceView) |
| OnSelected | Raises the Selected event after the SqlDataSource control has completed a data retrieval operation. (inherited from SqlDataSourceView) |
| OnSelecting | Raises the Selecting event before the SqlDataSource control attempts a data retrieval operation. (inherited from SqlDataSourceView) |
| OnUpdated | Raises the Updated event after the SqlDataSource control has completed an update operation. (inherited from SqlDataSourceView) |
| OnUpdating | Raises the Updating event before the SqlDataSource control attempts an update operation. (inherited from SqlDataSourceView) |
| RaiseUnsupportedCapabilityError | Compares the capabilities that are requested for an ExecuteSelect operation against those that the view supports and is called by the RaiseUnsupportedCapabilitiesError method. (inherited from SqlDataSourceView) |
| SaveViewState | Saves the changes to the view state for the SqlDataSourceView control since the time that the page was posted back to the server. (inherited from SqlDataSourceView) |
| TrackViewState | Causes the SqlDataSourceView object to track changes to its view state so that the changes can be stored in the StateBag object for the control and persisted across requests for the same page. (inherited from SqlDataSourceView) |
| Name | Description | |
|---|---|---|
| DataSourceViewChanged | Occurs when the data source view has changed.(inherited from DataSourceView) |
| Deleted | Occurs when a delete operation has completed.(inherited from SqlDataSourceView) |
| Deleting | Occurs before a delete operation.(inherited from SqlDataSourceView) |
| Filtering | Occurs before a filter operation.(inherited from SqlDataSourceView) |
| Inserted | Occurs when an insert operation has completed.(inherited from SqlDataSourceView) |
| Inserting | Occurs before an insert operation.(inherited from SqlDataSourceView) |
| Selected | Occurs when a data retrieval operation has completed.(inherited from SqlDataSourceView) |
| Selecting | Occurs before a data retrieval operation.(inherited from SqlDataSourceView) |
| Updated | Occurs when an update operation has completed.(inherited from SqlDataSourceView) |
| Updating | Occurs before an update operation.(inherited from SqlDataSourceView) |
Community Additions
ADD
Show: