Can any on Explain
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import oracle.jdbc.pool.OracleDataSource;
public class ConnectionThread extends Thread {
private OracleDataSource_dataSource;
private int_cycles;
public ConnectionThread(OracleDataSource dataSource, int cycles) {
super("ConnectionThread" + cycles);
_dataSource= dataSource;
_cycles= cycles;
}
Dear ALL,
this is a piece of code that request a connection to a datasource
what i need is why we call here the super method and what is the two parameters that passed in the super method.
Thanks

