OdbcDataReader.GetSchemaTable with Access databases

  • Thread starter Thread starter stamburini
  • Start date Start date
S

stamburini

With ADOX, or DAO, I can have all information I need on Access
databases, including all properties of the fields of all the tables.
For example, I Can get informations about 2 properties:
- AllowZeroLength
- Required
With ADO.NET the property 'Required' is available with GetSchemaTable,
but not the property 'AllowZeroLength'
(for further informations: Knowledge Base - 209098)

Has anyone a solution ?
Silvano
 
On 4 Aug 2004 07:32:32 -0500, (e-mail address removed)-spam.invalid (stamburini) wrote:

¤ With ADOX, or DAO, I can have all information I need on Access
¤ databases, including all properties of the fields of all the tables.
¤ For example, I Can get informations about 2 properties:
¤ - AllowZeroLength
¤ - Required
¤ With ADO.NET the property 'Required' is available with GetSchemaTable,
¤ but not the property 'AllowZeroLength'
¤ (for further informations: Knowledge Base - 209098)

From what I can see it isn't available via the GetSchemaTable method.


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
If the property 'AllowZeroLength' was available via the GetSchemaTable
method, I will not need help from anyone !

It is strange that Microsoft has not implemented all the properties of
DAO and ADOX in ADO.NET (or .NET Framework)
 
Back
Top