• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

JSP - Unsupported Operation Exception

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi

I tried to write a code that reads the data from excel sheet and writes into DB2 database.It worked perfectly .But if it has repetition fields, then also it inserts the data.So I used a primary key in the database to avoid repetition.Then I wrote a code which inserts data into database when there is no repetition of data.But if it contains repeatitive data, then it must rollback all the process in database or remove the data that is inserted through the program.I used save point and rollback for this action.
When i run the program it shows "java.lang.UnsupportedOperationException ".Can anyone help me out.
So my code is


<%@ page import="java.sql.*" %>
<%@ page import="java.io.*" %>
<html>
<body>
<%
Connection c;
Connection c1;
Statement stmnt;
Statement stmnt1;
Savepoint svpt1=null ;
int r=0;
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
c = DriverManager.getConnection("jdbc dbc:tt","",""); //excel DSN = tt
c1= DriverManager.getConnection("jdbc dbc :db2","",""); //DB2 DSN = db2

stmnt = c.createStatement();
stmnt1 = c1.createStatement();
ResultSet rs = stmnt.executeQuery("SELECT * FROM [Sheet1$]");
try
{
while(rs.next())
{
String a1=rs.getString("percen");
String a2=rs.getString("name");
svpt1 = c1.setSavepoint("first");
r= stmnt1.executeUpdate("INSERT INTO TAB1 VALUES('"+a1+"','"+a2+"');");//insert fields into database DB2
out.println(a1+" "+a2);

}
c1.commit();
response.sendRedirect("index.jsp");

}
catch(Exception e)
{
c1.rollback(svpt1);
}
}
catch(Exception e)
{
out.println(e);
}
%>
</body>
</html>


Manoj



[ October 22, 2008: Message edited by: Potter James ]

[ October 22, 2008: Message edited by: Potter James ]
[ October 22, 2008: Message edited by: Potter James ]
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please take the time to choose the correct forum for your posts. This forum is for questions on JSP.

For more information, please read this.

This post has been moved to a more appropriate forum.
 
Ranch Hand
Posts: 387
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi Potter,

You are using the JDBC_ODBC bridge, it does not implement very much.
Here's some code:



cheers,
Herman
 
Potter James
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Herman Scheltinga:
hi Potter,

You are using the JDBC_ODBC bridge, it does not implement very much.
Here's some code:



cheers,
Herman




Can you say that where to insert that clearly..
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Why are you using the JDBC ODBC bridge to communicate with DB2? COuld you not just use a proper type 4 driver? As is intimated above, the JDBC ODBC bridge is not production quality.
 
No more fooling around. Read this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic