Skip to content
Advertisement

Using GetSchemaTable() to retrieve only column names

Is it possible to use GetSchemaTable() to retrieve only column names?

I have been trying to retrieve Column names (only) using this method, is it possible.

This code retrieves a lot of table data unwanted, I only need a list containing column names!:

Advertisement

Answer

You need to use ExecuteReader(CommandBehavior.SchemaOnly)):

SchemaOnly:

The query returns column information only. When using SchemaOnly, the .NET Framework Data Provider for SQL Server precedes the statement being executed with SET FMTONLY ON.

The column name is in the first column of every row. I don’t think that it’s possible to omit the other column informations like ColumnOrdinal,ColumnSize,NumericPrecision and so on since you cannot use reader.GetString but only reader.GetSchemaTable in this case.

But your loop is incorrect if you only want the column names:

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement