class Employee
{
  public static void main (String args [])
       throws SQLException
  {
       DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());       Connection conn =
      DriverManager.getConnection ("jdbc:oracle:thin:@dlsun511:1721:dbms733",
   "scott", "tiger");    // Create a Statement
    Statement stmt = conn.createStatement ();    // Select the ENAME column from the EMP table
    ResultSet rset = stmt.executeQuery ("select ENAME from EMP");    // Iterate through the result and print the employee names
    while (rset.next ())
      System.out.println (rset.getString (1));
    
  }
}