Posts
Showing posts with the label Database
Implementing database concepts to develop an application in agile approach : Part 1.2 (Database Server)
- Get link
- X
- Other Apps
By
Foyzul
-
Hello everyone. In my last post, i have showed how to create a table schema from real time problem domain, which is now we called as user story. But to work on a database, we need to create tables in a database server. Since i am working on .NET Platform, i am using Microsoft's SQL Server 2005. Installing Microsoft SQL Server 2005: This server is automatically installed when we install Visual Studio 2008. Or you can download the server file from http://www.microsoft.com/Sqlserver/2005/en/us/express.aspx . Installing Microsoft SQL Server 2005 Management Studio Express: To working on the SQL Server, you need to install a management tool. You can download this from http://www.microsoft.com/downloads/details.aspx?familyid=C243A5AE-4BD1-4E3D-94B8-5A0F62BF7796&displaylang=en this location. OK. Now we are ready to work on the SQL Server. When you lunch the management studio express, the following window will appear. Figure 1: SQL Server Management Studi...
Implementing database concepts to develop an application in agile approach : Part 1.1 (Database Concept)
- Get link
- X
- Other Apps
By
Foyzul
-
Waterfall vs Agile: Most of the developers in the world start making their software in the traditional way . Traditional means first they gather most of the requirements of the client and then start designing the database where the data will be stored. After designing the database, which is called Entity-Relationship Diagram (ERD), they start coding. This approach is called waterfall . This is a very inefficient approach and it is turning obsolete day by day. New types of thinking and implementations are coming one by one to make a software robust and easily maintainable. The most popular thinking approach now a days is. AGILE The main part of agile is to start the working without waiting for the whole requirement of the client and evolve the application on the requirement of the client [Details] . In agile, we don't use 'Requirement' types of word. We rather use 'User Story' as the specification of the software given by the client. I have used a traditiona...