Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Get MS Access Query Column Names
Message
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Title:
Get MS Access Query Column Names
Miscellaneous
Thread ID:
01440055
Message ID:
01440055
Views:
87
I'm trying to get the column names of queries in MS Access . So far I have:
public static void Test()
{
    OleDbConnection connection = new OleDbConnection(AccessConnString);

    try
    {
        connection.Open();
    }
    catch (Exception e)
    {
        throw e;
    }

    DataTable t1 = connection.GetSchema("Columns");         // Returns Table column names
    DataTable t2 = connection.GetSchema("Procedures");      // Returns all Query names
    DataTable t3 = connection.GetSchema("Views");           // Returns all Subquery names

    connection.Close();
}
I cannot see to figure out how to get the column names for queries/subqueries. Anyone know how to do this?
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Next
Reply
Map
View

Click here to load this message in the networking platform