数据库连接

Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@localhost:1521:orcl"; //orcl为 数据库的SID
String user="test";
String password="test";
Connection conn= DriverManager.getConnection(url,user,password);

你可能感兴趣的:(数据库连接)