使用JDBC链接Oracle代码

2015-01-26 0 520
使用JDBC链接Oracle代码
    public class OracleJdbcTest    
    {    
        String driverClass = "oracle.jdbc.driver.OracleDriver";    
        
        Connection con;    
        
        public void init(FileInputStream fs) throws ClassNotFoundException, SQLException, FileNotFoundException, IOException    
        {    
            Properties props = new Properties();    
            props.load(fs);    
            String url = props.getProperty("db.url");    
            String userName = props.getProperty("db.user");    
            String password = props.getProperty("db.password");    
            Class.forName(driverClass);    
        
            con=DriverManager.getConnection(url, userName, password);    
        }    
        
        public void fetch() throws SQLException, IOException    
        {    
            PreparedStatement ps = con.prepareStatement("select SYSDATE from dual");    
            ResultSet rs = ps.executeQuery();    
        
            while (rs.next())    
            {    
                // do the thing you do    
            }    
            rs.close();    
            ps.close();    
        }    
        
        public static void main(String[] args)    
        {    
            OracleJdbcTest test = new OracleJdbcTest();    
            test.init();    
            test.fetch();    
        }    
    }   

遇见资源网 java 使用JDBC链接Oracle代码 http://www.ox520.com/8426.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务