There is no direct method of ADO to list table property. If you want to stick with ADO, then you have to include the ADOX library (ADO extension), from there you can have access to the database schema.
Alternatively, you can use DAO to list the object in the database, in DAO there is a property named TableProperties.
How to use ADO retrieve MSAccess attribute ?
Marimuthu_r
There is no direct method of ADO to list table property. If you want to stick with ADO, then you have to include the ADOX library (ADO extension), from there you can have access to the database schema.
Alternatively, you can use DAO to list the object in the database, in DAO there is a property named TableProperties.
Hope this can help.