DB - Connection - Robot stopped working

  1. I am trying to connect access db and execute few queries.
  2. each time i am using connect and Disconnect activity for all the records
  3. first record it got updated in db.
  4. second record onwards, getting uipath robot was stopped working.

job-stopped-with-an-unexpected-exit-code-0xc0000005/121413

Have you tried connecting and disconnecting once instead for each records? Something like:

Connect();
For each item
{
UpdateQueries();
}
Disconnect();