|
-
April 23rd, 1999, 09:05 AM
#1
Description of a Field in a Access Table
How can I get the descritption of a field in a Access table, using VC 5?
-
April 23rd, 1999, 09:33 AM
#2
Re: Description of a Field in a Access Table
If you are using CRecordsets you can make a call CRecordset::GetODBCFieldInfo which will return the following structure.
struct CODBCFieldInfo
{
CString m_strName;
SWORD m_nSQLType;
UDWORD m_nPrecision;
SWORD m_nScale;
SWORD m_nNullability;
};
Hope this helps
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
|