Minimal set of critical database operations

Posted by Juan Carlos Coto on Programmers See other posts from Programmers or by Juan Carlos Coto
Published on 2014-05-27T00:06:31Z Indexed on 2014/05/27 3:40 UTC
Read the original article Hit count: 497

In designing the data layer code for an application, I'm trying to determine if there is a minimal set of database operations (both single and combined) that are essential for proper application function (i.e. the database is left in an expected state after every data access call).

Is there a way to determine the minimal set of database operations (functions, transactions, etc.) that are critical for an application to function correctly? How do I find it?

Thanks very much!

© Programmers or respective owner

Related posts about database

Related posts about Requirements