dataview schema

  • Thread starter Thread starter Rob T
  • Start date Start date
R

Rob T

How do you read the schema of a dataview?

I have a could of SQL stored procedures that are getting read into a
dataview and I need to know what the strucutres are so they can be displayed
to the screen properly.

Thanks.

-Rob T.
 
You can look at the schema of the table the dataview is based on ie
DataView.Table - the schema info is easy to retrieve once you have that.
 
Back
Top