Frameworks| Hibernate| Struts| JSF| JavaFX| Ajax| Spring| DOJO| JDO| iBatis| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials:
 

Software Solutions and Services
 

 
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments
 
Designing Database 
 

Database designing is considered as crucial stage in the development lifecycle of the web application

 

Designing Database

                         

Database designing is considered as crucial stage in the development lifecycle of the web application. The database is finally responsible for storing the data in the database for retrieval in future. So, the database design should be done in such a way that it full fill all your business requirements.

In this application we are only concern with take the new user information and saving in the database for authenticating the user in the future.

We are using MySQL database for this application. MySQL one of the open source, free and widely used relational database for applications.

Creating the database:

I am assuming that you have already installed MySQL on your machine and have access to the database server. Login to your MySQL Server and create a database "strutshibernatespring".

Creating tables:

Then connect to the database "strutshibernatespring" and create table "login". Here is the script to create login table:

CREATE TABLE `login` (
`id` int(11) NOT NULL default '0',
`loginid` varchar(20) NOT NULL default '',
`password` varchar(20) NOT NULL default '',
`email` varchar(30) default NULL,
`address` varchar(60) default NULL,
`phno` int(11) default '0',
PRIMARY KEY (`id`),
UNIQUE KEY `loginid` (`loginid`)
) TYPE=MyISAM;

The login table will used to store the user information and then authenticating the user at login time.

 

                         

» View all related tutorials
Related Tags: java c hibernate web error learning com configuration spring ide class j2ee frameworks jdbc data development ui ssis process framework

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 

Current Comments

3 comments so far (
post your own) View All Comments Latest 10 Comments:

Primary key: for a relational database to work, every record needs to be identified on its own.

Unique key: you can specify that certain data in your dbms must be unique. These are constraints and can be added to more then one field at a time

Posted by sandr on Wednesday, 02.20.08 @ 14:02pm | #49194

difference between primary and foreign key?

Posted by ramprasath on Thursday, 09.27.07 @ 11:31am | #30065

GOOD SIDES

Posted by Arabinda Sahoo on Saturday, 06.23.07 @ 21:00pm | #20050

Training Courses
Tell A Friend
Your Friend Name
Website Designing Services
 
Web Designing Packages From $150!
 
Website Designing Company Web Hosting
 
Website Designing Quotation
 
Search Tutorials:

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.