System.Data namespace in Java.See: Description
| Interface | Description |
|---|---|
| DataTableEventListener | |
| IDataReader |
Provides a means of reading one or more forward-only streams of result sets obtained by executing a command at a data source, and is implemented by .NET Framework data providers that access relational databases.
|
| IDataRecord |
Provides access to the column values within each row for a DataReader, and is implemented by .NET Framework data providers that access relational databases.
|
| Class | Description |
|---|---|
| Constraint |
Represents a constraint that can be enforced on one or more
DataColumn objects. |
| ConstraintCollection |
Represents a collection of constraints for a
DataTable. |
| DataColumn |
Represents the schema of a column in a
DataTable. |
| DataColumnCollection |
Represents a collection of
DataColumn objects for a DataTable. |
| DataKey | |
| DataRelation |
Represents a parent/child relationship between two
DataTable objects. |
| DataRelationCollection |
Represents the collection of
DataRelation objects for this DataSet. |
| DataRow |
Represents a row of data in a
DataTable. |
| DataRowCollection |
Represents a collection of rows for a
DataTable. |
| DataRowState |
Specifies the state of a
DataRow object. |
| DataRowView |
Represents a customized view of a
DataRow. |
| DataSet |
Represents an in-memory cache of data.
|
| DataTable |
Represents one table of in-memory data.
|
| DataTableCollection |
Represents the collection of tables for the
DataSet. |
| DataTableReader |
The
DataTableReader obtains the contents of one or more DataTable objects in the form of one or more read-only, forward-only result sets. |
| DataView |
Represents a databindable, customized view of a
DataTable for sorting, filtering, searching, editing, and navigation. |
| DBNull | |
| ForeignKeyConstraint |
Represents an action restriction enforced on a set of columns in a primary key/foreign key relationship when a value or row is either deleted or updated.
|
| MappingType |
A utility class providing constants.
|
| UniqueConstraint |
Represents a restriction on a set of columns in which all values must be unique.
|
| Enum | Description |
|---|---|
| Rule |
A utility class providing constants.
|
| XmlReadMode |
A utility class providing constants.
|
| Exception | Description |
|---|---|
| ConstraintException |
Represents the exception that is thrown when attempting an action that violates a constraint.
|
| DataException |
Represents the exception that is thrown when errors are generated using ADO.NET components.
|
| InvalidConstraintException |
Represents the exception that is thrown when incorrectly trying to create or access a relation.
|
System.Data namespace in Java.