Last active
December 18, 2018 21:40
-
-
Save fredsced/9c00e6b1423ddcf9dda48d6d7fa85090 to your computer and use it in GitHub Desktop.
Using Java JDBC to connect to Oracle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment