MDB File RecordThank you, if you can help, it would be great.
From: Tony Piro
Email: tpiro@stthomas.org
If you update in code you will have to assign
MyDynaset![ts] = Now
every time a row is updated or created.
Jet SQL has access to all the built-in (but not user-defined) function in Access Basic. If you use SQL to perform bulk updates from a staging table you can automate the timestamping like this
UPDATE MyTable (..., ts) ... Now WHERE some condition;
When you want to know whether a row is stale, you can read it again into a temporary variable and check the timestamp's current value again the value it had when last it was read.
Peter Wone.
Email : peterw@gui.com.au