System.Data namespaces for UWP apps

System.Data namespaces for UWP apps

 

The System.Data namespace and its children namespace (System.Data.Common) contain classes for accessing and managing data from diverse sources.

This topic displays the types in the System.Data namespaces that are supported in .NET for UWP apps.

Types supported in the .NET for UWP apps

Description

CommandBehavior

Provides a description of the results of the query and its effect on the database.

CommandType

Specifies how a command string is interpreted.

ConnectionState

Describes the current state of the connection to a data source.

DbType

Specifies the data type of a field; a property; or a Parameter object of a .NET Framework data provider.

IsolationLevel

Specifies the transaction locking behavior for the connection.

ParameterDirection

Specifies the type of a parameter within a query relative to the DataSet.

StateChangeEventArgs

Provides data for the state change event of a .NET Framework data provider.

StateChangeEventHandler

Represents the method that will handle the StateChange event.

UpdateRowSource

Specifies how query command results are applied to the row being updated.

Types supported in the .NET for UWP apps

Description

DbCommand

Represents an SQL statement or stored procedure to execute against a data source. Provides a base class for database-specific classes that represent commands. ExecuteNonQueryAsync

DbConnection

Represents a connection to a database.

DbConnectionStringBuilder

Provides a base class for strongly typed connection string builders.

DbDataReader

Reads a forward-only stream of rows from a data source.

DbException

The base class for all exceptions thrown on behalf of the data source.

DbParameter

Represents a parameter to a DbCommand and optionally; its mapping to a DataSet column. For more information on parameters; see Configuring Parameters and Parameter Data Types.

DbParameterCollection

The base class for a collection of parameters relevant to a DbCommand.

DbProviderFactory

Represents a set of methods for creating instances of a provider's implementation of the data source classes.

DbTransaction

The base class for a transaction.

Show:
© 2017 Microsoft