Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
1 Posted Topic
import java.sql.*; public class DisplayRecords{ public static void main(String ar[]) throws Exception{ DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver()); Connection con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe", "system", "system"); Statement stmt=con.createStatement(); String query="select * from emp"; System.out.println("executing the query:"+query); ResultSet rs=stmt.executeQuery(query); System.out.println(rs); } }
The End.
kashokreddy14