Java
Programming and Technical
Programming
Program
Write a program to print all the employee details that already exist in our system or directory. Suppose if we had a employee name with "abc". IF we click on "abc" we should get all the details of that employee..ie., already the details are there in our folder
Read Solution (Total 3)
-
- create hyperlink tag with employee name that name is passed to the java programme
and accessing by
PreparedStatement ps =con.prepareStatement(select * from table name where name=(?));
ps.setString(1,name);
ResultSet rs=ps.executeQuery();
if(rs.nxt())
{
rs.getName(1,name);
rs.getString(2,deptno);
}
- 10 years agoHelpfull: Yes(1) No(3)
- select * from tablename where tablename="abc";
- 10 years agoHelpfull: Yes(0) No(2)
- give the name of the employee as hyperlink if u click on that link identify the uri pattern in the Front controller depends on the email pull the data from the employee table using select * from tablename where email=?
- 10 years agoHelpfull: Yes(0) No(0)
Java Other Question