Fills the DataSet with only the schema based upon the chosen SchemaType.
[Visual Basic] Overridable Public Function FillDataSetSchema( _ ByVal dataSet As DataSet, _ ByVal schemaType As SchemaType _ ) As DataTable () [C#] public virtual DataTable[] FillDataSetSchema( DataSet dataSet, SchemaType schemaType ); [C++] public: virtual DataTable* FillDataSetSchema( DataSet* dataSet, SchemaType schemaType ) []; [JScript] public function FillDataSetSchema( dataSet : DataSet, schemaType : SchemaType ) : DataTable[];
An array of DataTable objects that contain data returned from the data source.
TableMappings is required to be mapped for this method to operate. The default source table is named "Table".
Notes to Inheritors: When overriding FillDataSetSchema in a derived class, be sure to call the base class's FillDataSetSchema method.
DataSetCommand Class | DataSetCommand Members | System.Data.Internal Namespace