文件名称:jdbc连接oracle
文件大小:24KB
文件格式:DOC
更新时间:2018-03-22 13:17:02
jdbc
1、Oracle8/8i/9i数据库(thin模式) 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);