I'm using the GetOleDbSchemaTable to get column info from an access db, column_name and description,
but can't figure out how to bind just the 'DESCRIPTION' and 'COLUMN_NAME' columns from the table of info returned.
below is what doesn't work, it produces grid columns for all the schematable columns, about 25 different things,
Dim schemaTable = dbConn.GetOleDbSchemaTable(OleDbSchemaGuid.Columns, _
New Object() {Nothing, Nothing, "VolDataNew", Nothing})
grid1.DataSource = schemaTable
grid1.DataBind()
<ItemTemplate>
<asp:Label ID="desc"
text='<%# DataBinder.Eval(Container.DataItem,"DESCRIPTION") %>'
runat="server" />
</ItemTemplate>