C# Class AccessProviderSample.DatabaseTableInfo

Contains information specific to the database table. Similar to the DirectoryInfo class.
显示文件 Open project: Huddle/Puddle Class Usage Examples

Public Methods

Method Description
DatabaseTableInfo ( DataRow row, string name, int rowCount, DataColumnCollection columns ) : System

Constructor.

Method Details

DatabaseTableInfo() public method

Constructor.
public DatabaseTableInfo ( DataRow row, string name, int rowCount, DataColumnCollection columns ) : System
row System.Data.DataRow The row definition.
name string The table name.
rowCount int The number of rows in the table.
columns System.Data.DataColumnCollection Information on the column tables.
return System