When there is no interaction with the server for
sometime, and then if the client executes a command,
it gives exception...
My code is like this :
if (sqlDB.connection.State !=
System.Data.ConnectionState.Open)
{
// connect to db
}
// build the sql command
.....
dataAdapter.Fill();
If the client is left idle for sometime and later if it tries to
execute a command using the above code, then
"dataAdapter.Fill" raises an exception.
What could be the problem??