Hi Ian,
Try this:
oleDbConnection1.Open();
DataTable schemaTable =
oleDbConnection1.GetOleDbSchemaTable(OleDbSchemaGuid.Columns,
new object[] {null, null, "YourTableName"});
oleDbConnection1.Close();
All the data is stored into schemaTable.
--
Miha Markic - RightHand .NET consulting & development
miha at rthand com
How do I retrieve a list of column names in a table using the
OleDbDataAdapter?
Ian