0% found this document useful (0 votes)
23 views2 pages

Easy Crud Operation Web Assignemnt

The document provides instructions to create a web application for employee management using Java technologies. It includes 3 tasks - 1) create an employee form to insert data into an Employee table, 2) create an employee list to view and delete employees, and 3) delete a selected employee. It also provides the database structure for the Employee table and requirements for the employee form like validations and input types. An optional task is to add pagination to the employee list. The document concludes with notes on submission instructions and contact details.

Uploaded by

patel nikunj
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views2 pages

Easy Crud Operation Web Assignemnt

The document provides instructions to create a web application for employee management using Java technologies. It includes 3 tasks - 1) create an employee form to insert data into an Employee table, 2) create an employee list to view and delete employees, and 3) delete a selected employee. It also provides the database structure for the Employee table and requirements for the employee form like validations and input types. An optional task is to add pagination to the employee list. The document concludes with notes on submission instructions and contact details.

Uploaded by

patel nikunj
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Create web-site for Employee Management (Add/List/Delete)

Environment:

1) Apache Tomcat Web Server


2) JSP and Servlet
3) Mysql as database (or any other RDBMS)
4) Eclipse editor (preferable)

IMP NOTE: Create a dynamic web project using JSP/Servlet and JDBC database connection. (Like
Connection, Statement, ResultSet) (Any other framework like Hibernate or Spring should not be
used)

Task -1 : Create employee web page (JSP or html) to insert the data in Employee Table

Structure of Employee Table:

Column Name Data Type Constraint


employeeId Int Primary Key
Name String or Varchar (100) Not Null
Address String or Varchar (200) Not Null
Gender Int
Salary Numeric Not Null
Birthdate Date Not Null

Data type varied based on database like (MySQl, Oracle, MS-SQL you can choose any one)

Page layout and validation For Employee Insert page


Input Label User Interface Java Data Type Validation
Name Text Box String Required
Birth Date java.util.Date Required
Address (Multi Text Area String Max limit is 150
line) characters
Gender (1-Male Radio button Byte Required
2- Female
Salary Text box Double Only Number
allowed
(Max length = 5)

Task -2 : Create Employee List page to show all employee from Employee table. Also add Delete
action link to delete the selected employee.

Optional task 2a: Page navigation (page par record is 5)

Optional task 2b: Before delete the employee please show confirmation message “Are you sure want to
delete employee?”

Task -3 : Delete the selected employee from employee list base on employeeId, After success delete
show the employee List
SQL Query Assignment

Write sql for the following query


1)        Display student names whose name start with ‘A’ or ‘a’
2)        Display student name and their subject’s total (English+Maths+Science)
3)        Display ranker name [Means display student name whose total is greater than all others
student]

There is no total column in table. total means (English+Maths+Science)


Structure of “Student” Table:

Column Name Data Type Constraint


studentId Int Primary Key
Name String or varchar(100) Not Null

Structure of “Mark” Table:

Column Name Data Type Constraint


StudentId Int Foreign Key
English int Allow Null
Maths Int Allow Null
Science Int Allow Null

---X--- Best of Luck ---X---

Note & Instructions:

1) For Employee Management project you may zip your source code and upload on (Google
Drive) http://drive.google.com and generate share link (using everyone can access) and
email us on [email protected].
2) You can also show your project demo by ANYDESK app.
3) You can submit SQL Query Assignment by email as text.
4) Those who are selected as employee after online submit, He/She need to repeated the
same kind of project offline withing 5 to 10 days after joining the company under under
observation of senior developer.
5) Please submit the “SQL Query” Assignment as early as possible but for “Employee
Management” web site you may take a time.
6) Let us know If you are working on assignment, so we can short list for HR Interview.
7) This is not a commercial project. It is only for testing development skills and not for
designing skills.
8) For more information you may contact us.
Email Id : [email protected]
Mobile: (+91) 8160 422 518 (HR)
Mobile: (+91) 9427 457 439 (For Technical Details)
(Timing: 10 am to 6 pm only- Monday to Friday

You might also like