Advertisement
uopspop

Untitled

Aug 12th, 2016
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.76 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=?");
  13.         pstmt.setString(1,"7001");
  14.         ResultSet rs = pstmt.executeQuery();
  15.         while(rs.next()){
  16.             String col1 = rs.getString(1);
  17.             String col2 = rs.getString(2);
  18.             System.out.print("EMPNO: " + col1 );
  19.             System.out.print("\tEMPNAME:  " + col2);
  20.         }
  21.         rs.close(); stmt.close(); con.close();
  22.     }
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement