Hibernate
1. First create project in eclipse(either java project/webproject) 2. configure the required jar for sql or mysql or any data base 2. right click on project and Add hibernate capabilities 3. then configure the hibenate configureation file Generated by MyEclipse Hibernate Tools. --> org.hibernate.dialect.MySQLDialect jdbc:mysql://localhost:3306/frameworkdb root 12345678 com.mysql.jdbc.Driver true update 4. create the POJO code that will map the table column names eg. /** * */ package com.hib.to; /** * @author kumar.ganapathy * */ public class Authenticate { private long uid; private String userName; private String passWord; /** * @return the uid */ public long getUid() { return uid; } /** * @param uid the uid to set */ public void setUid(long uid) { this.uid = uid; } /** * @return the userName */ publ...