Enter your email address:

Delivered by FeedBurner


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to use batch update in java and jsp
12-12-2011, 11:38 PM
Post: #1
Video How to use batch update in java and jsp
Here you are going to know how to use batch update in java and jsp.Using database codings with in jsp tag is simple so lets check the example.

import java.io.*;
import java.sql.*;
public class Batch
{
public static void main(String sam[])
{
Connection con;
Statement st;
ResultSet rs;
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con=DriverManager.getConnection("jdbc:odbc:s2sgateway","sa","");
st=con.createStatement();
con.setAutoCommit(false);
st.addBatch("insert into emp10 values('jani',201,'indore')");
st.addBatch("insert into emp10 values('safiq',202,'indore')");
st.addBatch("insert into emp10 values('mohamed',203,'indore')");
st.addBatch("insert into emp10 values('kumar',204,'jabalpur')");
st.addBatch("insert into emp10 values('karthik',201,'indore')");
st.addBatch("insert into emp10 values('rita',201,'indore')");

st.executeBatch();
System.out.println("one record inserted");
con.commit();
con.setAutoCommit(true);
st.close();
con.close();
}
catch(Exception e){}
}
}


Try it and ask questions if any doubt and do comment us.

Happy coding
Find all posts by this user
Add Thank You Quote this message in a reply
Advertise here or at any positions around our site send a mail to info@walkinsforum.com
Post Reply 


[-]
Share/Bookmark (Show All)
Facebook Linkedin Technorati Twitter Digg MySpace Delicious

Possibly Related Threads...
Thread: Author Replies Views: Last Post
Tongue Students management java project download rajasri 25 2,290 05-15-2012 12:45 PM
Last Post: itischinmay
  shopping cart in jsp&java admin 6 1,072 04-13-2012 08:51 PM
Last Post: sushantkop
Sad java.sql.SQLException: General error solution rajasri 3 1,089 02-07-2012 03:05 PM
Last Post: shahbaz07dbit
Sad create a file from form input in java,jsp rajasri 0 258 12-19-2011 06:32 PM
Last Post: rajasri
Wink Reading Html code of all the url using java rajasri 0 186 12-19-2011 06:17 PM
Last Post: rajasri
Star pagination in jsp,java rajasri 0 237 12-19-2011 05:32 PM
Last Post: rajasri
Music How to extract war file in java rajasri 0 2,887 12-14-2011 12:07 PM
Last Post: rajasri
Thumbs Up Solution for java.lang.NoClassDefFoundError: javax/transaction/Synchronization rajasri 0 1,013 12-14-2011 12:00 PM
Last Post: rajasri
Video simple update query in jsp page rajasri 0 1,067 12-14-2011 11:36 AM
Last Post: rajasri
Shocked update using parameters in jsp page rajasri 0 434 12-14-2011 11:34 AM
Last Post: rajasri

Forum Jump:


User(s) browsing this thread: 1 Guest(s)