Forums Register Login

Fetching value from database and add some rows and save in another table

+Pie Number of slices to send: Send
Hii all,
I am new to JSP,
M fetching few column values from the table and add one column in which m entering value manually and save all the data in another table while clicking on "Save" Button.

But M not getting the proper output.Please help me out.

I am getting success to get data of Employee Code,Employee name and Dept code from emp_mst.
now I am adding LWP(Leave without Pay) field for all the fetched value.After adding LWP how to save all the data in another table "i.e. leave_mst " while clicking on Submit button..

Following had written my code how it work...Please give me the solution for this..

------------------>

<%

String empmst="select empcd,emp_name,dept_cd from emp_mst";
DBConnection db = new DBConnection();
db.getConnection();
java.sql.ResultSet rs;
rs = db2.getAllData(empmst);

%>
<table border="1">
<tr>
<td>Sr. No.</td>
<td>Employee Code:</td>
<td>Employee Name:</td>
<td>Department Code:</td>
</tr>
<%
while(rs2.next())
{
%>
<tr>
<td>
<%=rs.getRow()%>
</td>
<td>
<input type="text" name="txtempcd" value="<%=rs.getString("empcd")%>"></input>
</td>
<td>
<input type="text" name="txtempname"
value='<%=rs.getString("emp_name")%>'></input>
</td>
<td>
<input type="text" name="txtdeptcd" value="<%=rs.getString("dept_cd")%>"></input>
</td>
<td><input type="text" name="txtsslwp" ></td>
</tr>
<%
}
%>
<tr>
<td>
<input type="Submit" value="Save" name="BtnSubmit">
</td>
</tr>
</table>


<----------------------
+Pie Number of slices to send: Send
JSP is not the recommended place for doing DB operations. It is better to separate the model and view.
Anyway, if that is not an option for you, you can post the data to a servlet on hitting save and the servlet should take care for committing it to the DB.
+Pie Number of slices to send: Send
Thanks...
can you tell me in detail about how can i do using servlet...??
can you give bit focus on it....
+Pie Number of slices to send: Send
Moved to the JDBC forum.
+Pie Number of slices to send: Send
 

Mehta Soham wrote:Thanks...
can you tell me in detail about how can i do using servlet...??
can you give bit focus on it....


What sort of help you are looking for? If you want to know more about servlets, you can go through: http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/Servlets.html
This tiny ad is guaranteed to be gluten free.
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 1273 times.
Similar Threads
not fetching values
Error coming 500 please an code is
Fetching value from database and add some rows and save in another table
SqlException accured at processing Jsp
rs.getstring not working.
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 20:13:19.