Databases, and indeed any program with sensitive company data shouldn't be
left open when she goes to lunch. It risks company data. She needs to close
the database and log off of the computer, then log back in when she comes
back.
Incidentally, ADO has been replaced by a similar .NET method called ADO.NET.
The 2 are incompatible to some extent. Current Microsoft advice is to use
DAO. They will both work, and both are supported. Each can do things that
the other can't. As long as you set a reference to both, and disambiguate
methods and properties that are common to both, you should have any problem.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
"Toxalot" <(E-Mail Removed)> wrote in message
news:c44c39b8-0d02-4cdf-ab59-(E-Mail Removed)...
> I'm developing a database in 2003 with a separate FE/BE. The BE is
> Access, but the book I had when I started learning was really pushing
> ADO as this new and great thing so I started out using ADO.
>
> If the database is left open and unused while the client is on lunch
> or break, she gets errors when she tries to do anything when she comes
> back. Many of the functions try to requery the recordset and I'm
> thinking that maybe that is failing because it dropped the connection
> or something?
>
> Should I be doing something to make sure it stays alive?