|
-
Dec 15th, 2003, 10:12 AM
#1
Thread Starter
Fanatic Member
Field Description
Hi all,
When we create a table in MS Access, we input 3 entries:
1) Field Name;
2) Field Type and
3) Field Description
Is there any way through which I can fetch that Field Description value programatically?
Something like 'rs.Fields(Index).Description' 
Pls guide
Regards,
Prakash
-
Dec 16th, 2003, 02:51 AM
#2
Frenzied Member
if you use a datareader you can use the properties
*GetDataTypeName
*GetFieldName
for each row to get it's system and db types
for datasets, the only way I can think of is to make a typed dataset based on the xls file of the database??
Anyone else?
yours
Henrik
-
Dec 16th, 2003, 03:22 AM
#3
Thread Starter
Fanatic Member
[resolved]
got the answer from db section
VB Code:
rs.Fields("FieldName").Properties("Description").Value
regards
prakash
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|