Returns a DataTable that has one row (DataRow) for each column.
The rows describe the column metadata.
Syntax
'Declaration
Public Overrides NotOverridable Function GetSchemaTable() As DataTable
'Usage
Dim instance As TdDataReader
Dim value As DataTable
value = instance.GetSchemaTable()
public override DataTable GetSchemaTable()
public:
DataTable^ GetSchemaTable(); override
Return Value
It returns a DataTable for data returning statements (SQL). The DataTable has one row of metadata for each column. It returns null
when there is no column metadata.
Exceptions
Requirements
Product | Versions | Platforms |
.NET | 2.1, 3.1, 6 | Windows, Linux, MacOS |
.NET Framework | 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 | Windows |
.NET Standard | 2.0 | Windows, Linux, MacOS |
See Also