ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Batch processing Demo
package com.nt.batch;
importjava.sql.*;
publicclassBatchProcessingDemo{
publicstaticvoidmain(String[] args) throwsException{
try{
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection
con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","system","password");
//create Statementobj
Statement st=con.createStatement();
//addqueriestobatch
st.addBatch("update studentsetsname='hritik'where sno=101");
st.addBatch("insertintostudentvalues(102,'ram',90,50,40,'hyderabad')");
st.addBatch("deletefromstudentwhere sno=104");
//execute the batch
int[] result=st.executeBatch();
//processthe result
intsum=0;//concept--- local variablesmusttobe initialized..
for(inti=0;i<result.length;++i){
sum=sum+result[i];
}
System.out.println("updationoccoured");
System.out.println("thenoof effectedresultsare:"+sum);
//close jdbcobjects
st.close();
con.close();
}catch(Exceptione){e.printStackTrace();}
}
}

More Related Content

What's hot (20)

µÚÈþ»ØÔ´Υ»¥ß¥Ê©`(¹«¿ª°æ)
µÚÈþ»ØÔ´Υ»¥ß¥Ê©`(¹«¿ª°æ)µÚÈþ»ØÔ´Υ»¥ß¥Ê©`(¹«¿ª°æ)
µÚÈþ»ØÔ´Υ»¥ß¥Ê©`(¹«¿ª°æ)
moai kids
?
Node child process
Node child processNode child process
Node child process
LearningTech
?
Azure Durable Funkiness - .NET Oxford June 2018
Azure Durable Funkiness - .NET Oxford June 2018Azure Durable Funkiness - .NET Oxford June 2018
Azure Durable Funkiness - .NET Oxford June 2018
Stuart Leeks
?
Taking a Test Drive
Taking a Test DriveTaking a Test Drive
Taking a Test Drive
Graham Lee
?
Test innode
Test innodeTest innode
Test innode
Davide Fiorello
?
CONTOH MEMBUAT TABEL XAMPP
CONTOH MEMBUAT TABEL XAMPPCONTOH MEMBUAT TABEL XAMPP
CONTOH MEMBUAT TABEL XAMPP
Bina Sarana Informatika
?
Writing testable js [by Ted Piotrowski]
Writing testable js [by Ted Piotrowski]Writing testable js [by Ted Piotrowski]
Writing testable js [by Ted Piotrowski]
JavaScript Meetup HCMC
?
Linux kernel debugging
Linux kernel debuggingLinux kernel debugging
Linux kernel debugging
JungMinSEO5
?
What is row level isolation on cassandra
What is row level isolation on cassandraWhat is row level isolation on cassandra
What is row level isolation on cassandra
Kazutaka Tomita
?
Gevent rabbit rpc
Gevent rabbit rpcGevent rabbit rpc
Gevent rabbit rpc
Aleksandr Mokrov
?
Node.js flow control
Node.js flow controlNode.js flow control
Node.js flow control
Simon Su
?
JavaSE7 Launch Event: Java7xGroovy
JavaSE7 Launch Event: Java7xGroovyJavaSE7 Launch Event: Java7xGroovy
JavaSE7 Launch Event: Java7xGroovy
Yasuharu Nakano
?
FwDays 2021: Metarhia Technology Stack for Node.js
FwDays 2021: Metarhia Technology Stack for Node.jsFwDays 2021: Metarhia Technology Stack for Node.js
FwDays 2021: Metarhia Technology Stack for Node.js
Timur Shemsedinov
?
Impact of the New ORM on Your Modules
Impact of the New ORM on Your ModulesImpact of the New ORM on Your Modules
Impact of the New ORM on Your Modules
Odoo
?
ES6, ? ?? ????
ES6, ? ?? ????ES6, ? ?? ????
ES6, ? ?? ????
?? ?
?
Varnish
VarnishVarnish
Varnish
Shaopeng He
?
...Lag
...Lag...Lag
...Lag
Samantha Billington
?
Debugging TV Frame 0x09
Debugging TV Frame 0x09Debugging TV Frame 0x09
Debugging TV Frame 0x09
Dmitry Vostokov
?
Insertion Sort Classe Principal
Insertion Sort Classe PrincipalInsertion Sort Classe Principal
Insertion Sort Classe Principal
Elaine Cec¨ªlia Gatto
?
Structured Testing Framework
Structured Testing FrameworkStructured Testing Framework
Structured Testing Framework
serzar
?
µÚÈþ»ØÔ´Υ»¥ß¥Ê©`(¹«¿ª°æ)
µÚÈþ»ØÔ´Υ»¥ß¥Ê©`(¹«¿ª°æ)µÚÈþ»ØÔ´Υ»¥ß¥Ê©`(¹«¿ª°æ)
µÚÈþ»ØÔ´Υ»¥ß¥Ê©`(¹«¿ª°æ)
moai kids
?
Azure Durable Funkiness - .NET Oxford June 2018
Azure Durable Funkiness - .NET Oxford June 2018Azure Durable Funkiness - .NET Oxford June 2018
Azure Durable Funkiness - .NET Oxford June 2018
Stuart Leeks
?
Taking a Test Drive
Taking a Test DriveTaking a Test Drive
Taking a Test Drive
Graham Lee
?
Linux kernel debugging
Linux kernel debuggingLinux kernel debugging
Linux kernel debugging
JungMinSEO5
?
What is row level isolation on cassandra
What is row level isolation on cassandraWhat is row level isolation on cassandra
What is row level isolation on cassandra
Kazutaka Tomita
?
Node.js flow control
Node.js flow controlNode.js flow control
Node.js flow control
Simon Su
?
JavaSE7 Launch Event: Java7xGroovy
JavaSE7 Launch Event: Java7xGroovyJavaSE7 Launch Event: Java7xGroovy
JavaSE7 Launch Event: Java7xGroovy
Yasuharu Nakano
?
FwDays 2021: Metarhia Technology Stack for Node.js
FwDays 2021: Metarhia Technology Stack for Node.jsFwDays 2021: Metarhia Technology Stack for Node.js
FwDays 2021: Metarhia Technology Stack for Node.js
Timur Shemsedinov
?
Impact of the New ORM on Your Modules
Impact of the New ORM on Your ModulesImpact of the New ORM on Your Modules
Impact of the New ORM on Your Modules
Odoo
?
ES6, ? ?? ????
ES6, ? ?? ????ES6, ? ?? ????
ES6, ? ?? ????
?? ?
?
Structured Testing Framework
Structured Testing FrameworkStructured Testing Framework
Structured Testing Framework
serzar
?

Similar to Batch processing Demo (20)

Scrollable Test App
Scrollable Test AppScrollable Test App
Scrollable Test App
Peeyush Ranjan
?
Transaction Management Tool
Transaction Management ToolTransaction Management Tool
Transaction Management Tool
Peeyush Ranjan
?
Cursor Demo App
Cursor Demo AppCursor Demo App
Cursor Demo App
Peeyush Ranjan
?
Jdbc
JdbcJdbc
Jdbc
Rami Nayan
?
°Õ´Ç³¾³¦²¹³ÙÁ¬½Ó³ØÅäÖ÷½·¨³Õ2.1
°Õ´Ç³¾³¦²¹³ÙÁ¬½Ó³ØÅäÖ÷½·¨³Õ2.1°Õ´Ç³¾³¦²¹³ÙÁ¬½Ó³ØÅäÖ÷½·¨³Õ2.1
°Õ´Ç³¾³¦²¹³ÙÁ¬½Ó³ØÅäÖ÷½·¨³Õ2.1
Zianed Hou
?
Photo Insert and Retrieve App
Photo Insert and Retrieve AppPhoto Insert and Retrieve App
Photo Insert and Retrieve App
Peeyush Ranjan
?
2012 JDays Bad Tests Good Tests
2012 JDays Bad Tests Good Tests2012 JDays Bad Tests Good Tests
2012 JDays Bad Tests Good Tests
Tomek Kaczanowski
?
code for quiz in my sql
code for quiz  in my sql code for quiz  in my sql
code for quiz in my sql
JOYITAKUNDU1
?
Wwe Management System
Wwe Management SystemWwe Management System
Wwe Management System
NeerajMudgal1
?
Learning Java 4 ¨C?Swing, SQL, and Security API
Learning Java 4 ¨C?Swing, SQL, and Security APILearning Java 4 ¨C?Swing, SQL, and Security API
Learning Java 4 ¨C?Swing, SQL, and Security API
caswenson
?
???? ??? ?? ???? ???
???? ??? ?? ???? ??????? ??? ?? ???? ???
???? ??? ?? ???? ???
?? ?
?
Java assgn
Java assgnJava assgn
Java assgn
aa11bb11
?
Google App Engine Developer - Day3
Google App Engine Developer - Day3Google App Engine Developer - Day3
Google App Engine Developer - Day3
Simon Su
?
33rd Degree 2013, Bad Tests, Good Tests
33rd Degree 2013, Bad Tests, Good Tests33rd Degree 2013, Bad Tests, Good Tests
33rd Degree 2013, Bad Tests, Good Tests
Tomek Kaczanowski
?
Construire une application JavaFX 8 avec gradle
Construire une application JavaFX 8 avec gradleConstruire une application JavaFX 8 avec gradle
Construire une application JavaFX 8 avec gradle
Thierry Wasylczenko
?
Import java
Import javaImport java
Import java
Vinay Dixit
?
NoSQL and JavaScript: a Love Story
NoSQL and JavaScript: a Love StoryNoSQL and JavaScript: a Love Story
NoSQL and JavaScript: a Love Story
Alexandre Morgaut
?
JJUG CCC 2011 Spring
JJUG CCC 2011 SpringJJUG CCC 2011 Spring
JJUG CCC 2011 Spring
Kiyotaka Oku
?
Db examples
Db examplesDb examples
Db examples
ABDUmomo
?
Jdbc
JdbcJdbc
Jdbc
lathasiva
?
Transaction Management Tool
Transaction Management ToolTransaction Management Tool
Transaction Management Tool
Peeyush Ranjan
?
°Õ´Ç³¾³¦²¹³ÙÁ¬½Ó³ØÅäÖ÷½·¨³Õ2.1
°Õ´Ç³¾³¦²¹³ÙÁ¬½Ó³ØÅäÖ÷½·¨³Õ2.1°Õ´Ç³¾³¦²¹³ÙÁ¬½Ó³ØÅäÖ÷½·¨³Õ2.1
°Õ´Ç³¾³¦²¹³ÙÁ¬½Ó³ØÅäÖ÷½·¨³Õ2.1
Zianed Hou
?
Photo Insert and Retrieve App
Photo Insert and Retrieve AppPhoto Insert and Retrieve App
Photo Insert and Retrieve App
Peeyush Ranjan
?
2012 JDays Bad Tests Good Tests
2012 JDays Bad Tests Good Tests2012 JDays Bad Tests Good Tests
2012 JDays Bad Tests Good Tests
Tomek Kaczanowski
?
code for quiz in my sql
code for quiz  in my sql code for quiz  in my sql
code for quiz in my sql
JOYITAKUNDU1
?
Learning Java 4 ¨C?Swing, SQL, and Security API
Learning Java 4 ¨C?Swing, SQL, and Security APILearning Java 4 ¨C?Swing, SQL, and Security API
Learning Java 4 ¨C?Swing, SQL, and Security API
caswenson
?
???? ??? ?? ???? ???
???? ??? ?? ???? ??????? ??? ?? ???? ???
???? ??? ?? ???? ???
?? ?
?
Google App Engine Developer - Day3
Google App Engine Developer - Day3Google App Engine Developer - Day3
Google App Engine Developer - Day3
Simon Su
?
33rd Degree 2013, Bad Tests, Good Tests
33rd Degree 2013, Bad Tests, Good Tests33rd Degree 2013, Bad Tests, Good Tests
33rd Degree 2013, Bad Tests, Good Tests
Tomek Kaczanowski
?
Construire une application JavaFX 8 avec gradle
Construire une application JavaFX 8 avec gradleConstruire une application JavaFX 8 avec gradle
Construire une application JavaFX 8 avec gradle
Thierry Wasylczenko
?
NoSQL and JavaScript: a Love Story
NoSQL and JavaScript: a Love StoryNoSQL and JavaScript: a Love Story
NoSQL and JavaScript: a Love Story
Alexandre Morgaut
?

More from Peeyush Ranjan (8)

Multiple Submit Button Test App
Multiple Submit Button Test AppMultiple Submit Button Test App
Multiple Submit Button Test App
Peeyush Ranjan
?
Servlet LifeCycle Demo App
Servlet LifeCycle Demo  AppServlet LifeCycle Demo  App
Servlet LifeCycle Demo App
Peeyush Ranjan
?
Online Form Submission App
Online Form Submission AppOnline Form Submission App
Online Form Submission App
Peeyush Ranjan
?
Scrollable Demo App
Scrollable Demo AppScrollable Demo App
Scrollable Demo App
Peeyush Ranjan
?
Net Beans Codes for Student Portal
Net Beans Codes for Student PortalNet Beans Codes for Student Portal
Net Beans Codes for Student Portal
Peeyush Ranjan
?
TextSearch
TextSearchTextSearch
TextSearch
Peeyush Ranjan
?
DBTool
DBToolDBTool
DBTool
Peeyush Ranjan
?

Batch processing Demo

  • 1. Batch processing Demo package com.nt.batch; importjava.sql.*; publicclassBatchProcessingDemo{ publicstaticvoidmain(String[] args) throwsException{ try{ Class.forName("oracle.jdbc.driver.OracleDriver"); Connection con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","system","password"); //create Statementobj Statement st=con.createStatement(); //addqueriestobatch st.addBatch("update studentsetsname='hritik'where sno=101"); st.addBatch("insertintostudentvalues(102,'ram',90,50,40,'hyderabad')"); st.addBatch("deletefromstudentwhere sno=104"); //execute the batch int[] result=st.executeBatch(); //processthe result intsum=0;//concept--- local variablesmusttobe initialized.. for(inti=0;i<result.length;++i){ sum=sum+result[i]; } System.out.println("updationoccoured"); System.out.println("thenoof effectedresultsare:"+sum); //close jdbcobjects