DbDataReader.GetSchemaTable Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a DataTable that describes the column metadata of the DbDataReader.
Returns null
if the executed command returned no resultset, or after NextResult() returns false
.
public:
virtual System::Data::DataTable ^ GetSchemaTable();
public:
abstract System::Data::DataTable ^ GetSchemaTable();
public virtual System.Data.DataTable? GetSchemaTable ();
public virtual System.Data.DataTable GetSchemaTable ();
public abstract System.Data.DataTable GetSchemaTable ();
abstract member GetSchemaTable : unit -> System.Data.DataTable
override this.GetSchemaTable : unit -> System.Data.DataTable
abstract member GetSchemaTable : unit -> System.Data.DataTable
Public Overridable Function GetSchemaTable () As DataTable
Public MustOverride Function GetSchemaTable () As DataTable
Returns
A DataTable that describes the column metadata.
Implements
Exceptions
The DbDataReader is closed.
The column index is out of range.
.NET Core and .NET 5+ only: In all cases.
Applies to
See also
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.