int i;
long startTime;
long stopTime;
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
Connection conn =
DriverManager.getConnection("jdbc:oracle:oci8:@dssw2k01","scott","tiger");
CallableStatement stmt = null;
conn.setAutoCommit(false);
startTime = System.currentTimeMillis();
for (i=1;i<1001;i++) {
stmt = conn.prepareCall(
"{call testxxxperf$.settestxxxperf( ?, ?, ?, ?, ? )}");
stmt.setInt(1,i);
stmt.setString(2,"123456789012345678901234567890");
stmt.setString(3,"12345678901234567890123456789012345678901234567890123456789012345678901234567890");
stmt.setString(4,"ZXVI01");
stmt.setDate(5,new java.sql.Date(System.currentTimeMillis()));
stmt.execute();
stmt.close();
}
conn.commit();
stopTime = System.currentTimeMillis();
Statement dstmt = conn.createStatement();
dstmt.executeUpdate("delete testxxxperf");
conn.commit();
dstmt.close();
// stmt.close();
conn.close();
System.out.println( "Elapsed time in milliseconds: " + Long.toString( stopTime - startTime ) );