文件名称:oracle 10g jdbc 驱动程序
文件大小:1.52MB
文件格式:JAR
更新时间:2012-07-21 03:40:57
驱动 oracle 10g
oracle 10g jdbc驱动程序,运用在java连接oracle 10g。连接字符串为: Class.forName("oracle.jdbc.driver.OracleDriver").newInstance(); String url="jdbc:oracle:thin:@localip:1521:orcl"; //orcl为数据库的SID String user="userNm"; String password="***"; Connection conn= DriverManager.getConnection(url,user,password);