使用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();     
        }     
    }    

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/11058.html

(0)
上一篇 2021年7月19日 10:39
下一篇 2021年7月19日 10:39

相关推荐

发表回复

登录后才能评论