I was reading Oreilly Java Programming With Oracle JDBC edition and I notice that there was one example using java.util.properties object like below;
public class Connector {
Connection con = null;
private Properties info = new Properties();
public void connect(){
info.put("user", "sys as sysdba");
info.put("password", "testpass");
String driverName = "oracle.jdbc.driver.OracleDriver";
try {
Class.forName(driverName);
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String serverName = "localhost";
String port = "1521";
String sid = "XE";
String url = "jdbc:oracle:thin:@" + serverName + ":" + port + ":" + sid;
try {
con = DriverManager.getConnection(url, info);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void closeConnection(){
try {
con.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
I have checked API that I understand main benefit of properties is reading local sources. Google OCI driver examples using java.util.properties more than thin driver examples. My question is;
*Should I use properties for thin driver? *if yes what will be benefit?
*Why I can not cast full details as properties that I have to use String object for connection?
Thank you