码迷,mamicode.com
首页 > 数据库 > 详细

Database As a Fortress

时间:2015-08-09 10:54:29      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:数据库   应用   as   

?

Database As a Fortress

Dan Chak

THE dATABASE iS WHERE All oF THE dATA, both input by your employ- ees and collected from your customers, resides. User interfaces, business and application logic, and even employees will come and go, but your data lasts forever. Consequently, enough cannot be said about the importance of build- ing a solid data model from Day One.
The exuberance over agile techniques has left many thinking that it’s fine, or even preferable, to design applications as you go. Gone are the days of writ- ing complex, comprehensive technical designs up front! The new school says deploy early and often. A line of code in production is better than 10 in your head. It seems almost too good to be true, and where your data is concerned, it is.
While business rules and user interfaces do evolve rapidly, the structures and relationships within the data you collect often do not. Therefore, it is critical to have your data model defined right from the start, both structurally and analytically. Migrating data from one schema to another in situ is difficult at best, time consuming always, and error prone often. While you can suffer bugs temporarily at the application layer, bugs in the database can be disastrous. Finding and fixing a data-layer design problem does not restore your data once it has been corrupted.
A solid data model is one that guarantees security of today’s data, but is also extensible for tomorrow’s. Guaranteeing security means being impervious to bugs that will—despite your best efforts—be pervasive in an ever-changing application layer. It means enforcing referential integrity. It means building in domain constraints wherever they are known. It means choosing appropriate
?
??keys that help you ensure your data’s referential integrity and constraint satis- faction. Being extensible for tomorrow means properly normalizing your data so that you can easily add architectural layers upon your data model later. It means not taking shortcuts.
The database is the final gatekeeper of your precious data. The application layer, which is by design ephemeral, cannot be its own watchdog. For the data- base to keep proper guard, the data model must be designed to reject data that does not belong, and to prevent relationships that do not make sense. Keys, foreign key relationships, and domain constraints, when described in a schema, are succinct, easy to understand and verify, and ultimately self- documenting. Domain rules encoded in the data model are also physical and persistent; a change to application logic does not wash them away.
To get the most out of a relational database—to make it a true part of the application as opposed to simply a storehouse for application data—you need to have a solid understanding of what you are building from the start. As your product evolves, so too will the data layer, but at each phase of its evolution, it should always maintain its status as Fortress. If you trust it and bestow upon it the heavy responsibility of trapping bugs from other layers of your application, you will never be disappointed.
Dan Chak is the director of software development at CourseAdvisor Inc., a Wash- ington Post company. He is the author of Enterprise Rails (O’Reilly).

Database As a Fortress

标签:数据库   应用   as   

原文地址:http://blog.csdn.net/wangzi11322/article/details/47373235

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!