No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
1 Posted Topic
[code]import java.sql.*;import java.net.*; public class JdbcDemo{ public static void main(String args[]){ Connection con; Statement stmt ; ResultSet rs; try{ Class.forName("oracle.jdbc.driver.OracleDriver"); con =DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orclt1","scott","tiger"); System.out.println("Got Connection"); stmt = con.createStatement(); System.out.println("Statement object created"); rs= stmt.executeQuery("select * from customer"); while(rs.next()){ System.out.println(rs.getInt(1)+" "+rs.getString(2)); System.out.println("----------------------"); }//end of while }//end of try catch(ClassNotFoundException e){ System.out.println(e); } catch(SQLException …
The End.
fardoonmuhaifz