使用javajdbc连接到Oracle
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用javajdbc连接到Oracle相关的知识,希望对你有一定的参考价值。
Connecting to Oracle using Java JDBC
public class OracleJdbcTest { Connection con; public void init(FileInputStream fs) throws ClassNotFoundException, SQLException, FileNotFoundException, IOException { props.load(fs); Class.forName(driverClass); } { while (rs.next()) { // do the thing you do } rs.close(); ps.close(); } { OracleJdbcTest test = new OracleJdbcTest(); test.init(); test.fetch(); } }
以上是关于使用javajdbc连接到Oracle的主要内容,如果未能解决你的问题,请参考以下文章
使用java将oracle数据库连接到apache spark时出错