当前位置: 技术问答>java相关
谁有java编写的连接 oracle9i的例子 急100
来源: 互联网 发布时间:2015-10-05
本文导语: 我的系统win2000server tomcat3.3a 最好能写的详细点我是新手 | 呵呵 刚看到 来晚了 try{ Class.forName("oracle.jdbc.driver.OracleDriver").newInstance(); String url="jdbc:oracle:thin:@localhost:1521:Table"; ...
我的系统win2000server tomcat3.3a
最好能写的详细点我是新手
最好能写的详细点我是新手
|
呵呵 刚看到 来晚了
try{
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@localhost:1521:Table";
String user="system";
String password="manager";
Connection con= DriverManager.getConnection(url,user,password);
Statement stmt = con.createStatement();
stmt.executeUpdate("sql");
con.close();
}catch(Exception e){
System.out.println(e.toString());
}
try{
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@localhost:1521:Table";
String user="system";
String password="manager";
Connection con= DriverManager.getConnection(url,user,password);
Statement stmt = con.createStatement();
stmt.executeUpdate("sql");
con.close();
}catch(Exception e){
System.out.println(e.toString());
}