How can I get the field names of an MS Access database table?
Is there an SQL query I can use, or is there C# code to do this?
|
|
|||
|
|
|
this will work on sql server 2005 and up:
|
|||
|
|
Use IDataReader.GetSchemaTable() Here's an actual example that accesses the table schema and prints it plain and in XML (just to see what information you get):
Points of interest:
For my test table the output was:
|
|||
|
|
|
|
Use the DAO automation classes. You may already have an interop library for it in your Visual Studio installation. If not, it's easy enough to create one; just add a reference to the DAO COM library.
This is just as easy as querying a system table (which I've found to be problematic in Access), and you can get a lot of additional information this way. EDIT: I've modified the code from what I posted yesterday, which I had just translated from VB.NET, and which was missing a couple of pieces. I've rewritten it and tested it in C# in VS2008. |
||||
|
|
|
Run this query:
and then walk the list fields (and returned values) in the result set to get the field names. |
||
|
|
|
Are you asking how you can get the column names of a table in a Database? If so it completely depends on the Database Server you are using. In SQL 2005 you can select from the INFORMATION_SCHEMA.Columns View
IN SQL 2000 you can join SysObjects to SysColumns to get the info
|
||||||||
|
|
|
Depending on the DB engine your using you can easily query the DB system tables for that information For access i can't find the answer i know you can see the sys tables in access and from there you could try and determine where that information is but im not really sure how to do this part. tried using an example but got nowwhere |
||||
|