Advertisement
uopspop

Untitled

Aug 12th, 2016
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.74 KB | None | 0 0
  1. import java.sql.*;
  2.  
  3. public class statemetn2 {
  4.  
  5.     public static void main(String[] args) throws Exception{
  6.         // TODO Auto-generated method stub
  7.         String JDBCDrivers = "oracle.jdbc.driver.OracleDriver";
  8.         String useThisDriver_url = "jdbc:oracle:thin:@localhost:1521:xe";
  9.        
  10.         Class.forName(JDBCDrivers);
  11.         Connection con = DriverManager.getConnection(useThisDriver_url,"user08","1111");
  12.         PreparedStatement pstmt = con.prepareStatement("SELECT * from EMP2 where EMPNO=7001");
  13.         ResultSet rs = pstmt.executeQuery();
  14.         while(rs.next()){
  15.             String col1 = rs.getString(1);
  16.             String col2 = rs.getString(2);
  17.             System.out.print("EMPNO: " + col1 );
  18.             System.out.print("\tEMPNAME:  " + col2);
  19.         }
  20.         rs.close(); stmt.close(); con.close();
  21.     }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement