Regarding java coding
Hi pls provide me a coding for the following scenario
Employee table contains Five fields(empname,empno,salary,dept ,Grade),. After submitting the button it should display all the five record in a screen and do update,delete,insert and Add(There will be a four button in a screen(Add,update,insert,delete).Expecting your help.
[339 byte] By [
johnjannaa] at [2007-11-27 9:37:57]

have you already started to code?
let me give you a starting point.
creating a table with column names(empname,empno,salary,dept ,Grade)
String[] columnNames = {"empname","empno","salary","dept","grade"}
DefaultTableModel myModel = DefaultTableModel(columnNames,0);
table.setModel(myModel);
> Hi pls provide me a coding for the following
> scenario
>
>
> Employee table contains Five
> fields(empname,empno,salary,dept ,Grade),. After
> submitting the button it should display all the five
> record in a screen and do update,delete,insert and
> Add(There will be a four button in a
> screen(Add,update,insert,delete).Expecting your help.
And hopefully prepared for a disappointment