Sometimes I need to develop a simple database application using MS Access Databases.
I`ve learned that I can manipulate data in my tables using direct SQL Commands or gather everything in a DataSet and update any changes that it tracks (insert, delete...).
But the question is: should my app make changes is my database tables using direct SQL commands or should I only use a DataSet, and why?
Thanks