标签:创建 name log acl statement style host oracle 数据库
1.windows 下连接oracle数据库
Class.ForName("oracle.jdbc.driver.OracleDriver"); //会出现checked异常 Connection con =DriverManager.getConnection("jdbc:oracle:thin:@具体数据库ip:1521:orcl","账号","密码"); //声明连接对象 localhost 本地数据库 orcl是数据库的具体名字 Statement sm=con.createStatement(); //创建执行SQL语句的对象
标签:创建 name log acl statement style host oracle 数据库
原文地址:http://www.cnblogs.com/chenchengyi/p/7172069.html