Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"modified date" of a table? 1

Status
Not open for further replies.

djdidge

Programmer
May 9, 2001
65
GB
Using ADO how can i get the "modified date" of a table?

:eek:)
 
Yes you can get it (with ACCESS)

dim adoMain as new adodb.recordset
set adoMain = conmain.OpenSchema(adSchemaTables)

do while not adomain.eof
debug.print adoMain("TABLE_NAME") & " - " & adoMain("DATE_MODIFIED")
adomain.movenext
loop

Let try....


SEE you Soon
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top