Hi group,
I am novice to JDBC and here is my doubt
I have set the autoCommit(false) in the piece of code underneath but I
dont know some how the commit takes place. I can see record while is
query the db.
Why this ?
Pramod
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con = DriverManager.
getConnection("jdbc

racle:thin:@optiwiseme:1521

w30","pramod","pramod");
con.setAutoCommit(false);
Statement st = con.createStatement();
st.executeUpdate("INSERT INTO IMAGETABLE VALUES(1, EMPTY_BLOB())");
st.close();
con.close();