Is saving one control's value to the database better than saving all controls? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T01:57:20Z http://stackoverflow.com/feeds/question/1101109 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1101109/is-saving-one-controls-value-to-the-database-better-than-saving-all-controls 0 Is saving one control's value to the database better than saving all controls? Rorschach http://stackoverflow.com/users/27908 2009-07-08T23:36:10Z 2009-10-26T05:00:09Z <p>I came across this a few times in my career and never really found an answer. My question is in regards to a web form that contains multiple controls that the user can update, and then saves the data to a database (easiest example I can think of right now is a user profile form - see SO profile edit screen).</p> <p>So far, I have always just saved every control's value to the database. To me, it seems easier to have one method that calls one stored procedure, passing all the page's form values in.</p> <p>I have seen pages that seem to save the individual control's value, rather than the entire set of controls. It can definitely look nice (if the page is doing it through AJAX), but is it better? I would think you would need more overhead to get this done, like one (or many?) DTO, more methods, and more stored procedures?</p> <p>Which way is better? And are there any examples of how the individual control way is done?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1101109/is-saving-one-controls-value-to-the-database-better-than-saving-all-controls/1101113#1101113 0 Answer by McWafflestix for Is saving one control's value to the database better than saving all controls? McWafflestix http://stackoverflow.com/users/28053 2009-07-08T23:37:46Z 2009-07-08T23:37:46Z <p>I'd generally recommend using the individual control method; it provides for much greater granularity of design.</p> http://stackoverflow.com/questions/1101109/is-saving-one-controls-value-to-the-database-better-than-saving-all-controls/1101152#1101152 0 Answer by russau for Is saving one control's value to the database better than saving all controls? russau http://stackoverflow.com/users/109102 2009-07-08T23:48:24Z 2009-07-08T23:48:24Z <p>Depends what you mean by better. </p> <p>"one method, stored procedure" - quicker to code, easier to maintain. "save the individual control's value" - more optimized? I'd leave optimization to last. Looks nicer? Is usability actually a problem on this page? YAGNI - fix performance/usability only if they are broken.</p> http://stackoverflow.com/questions/1101109/is-saving-one-controls-value-to-the-database-better-than-saving-all-controls/1101912#1101912 0 Answer by gbn for Is saving one control's value to the database better than saving all controls? gbn http://stackoverflow.com/users/27535 2009-07-09T05:04:55Z 2009-07-09T05:04:55Z <p>Some thoughts</p> <ul> <li><p>It's one call to the database whether it's 25 columns or a single column</p></li> <li><p>(Similar) If you update 6 controls in one edit session, you do it in one call rather than 6 separate ones</p></li> <li><p>You may have forms with dependent or linked controls or disallowed value combinations: The general case would be "multiple control" changes in one edit session: so code for this</p></li> <li><p>The general idea of auditing/timestamping is at the unique *row *level, not column.</p></li> </ul>