write a query to select name from one table which has id,name and salary from another table which has id, sal where the salary is the second maximum
3 9577While in CallableStatament using in the oracle my procedure is return no.of columns so in java how can i retrivbe the data and i wnat to view all data which is reetrive from my procedure
ADP,
2143Hi friends, In JDBC 4 drivers are there among this which driver is best and why it is best.Which driver is most commonly used in web applications.
6 9566I have written a program to connect to database using odbc.Can this Application run on any Platform????
2 4627Give me some example for getting connection from connection pooling in JBoss Server. Is Connection Pool default in Server or we have to create it? Who can create Connection Pool in a Team. How it will be accessed by the developer code?
TCS,
1 4872java.lang.ClassNotFoundException:oracle.jdbc.driver.OracleDr iver? I get this error at run time.I used oracle10G. I set CLASS PATH:C:\oraclexe\app\oracle\product\10.2.0 \server\jdbc\lib\ojdbc14.jar; I write JDBC PROGRAM like import java.sql.*; class Example { public static void main(String args[]) { try { Class.forName ("oracle.jdbc.driver.OracleDriver"); System.out.println("Driver Loaded"); Connection con=DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:xe","system","salmas"); System.out.println("Driver Connected"); Statement st=con.createStatement(); ResultSet rs=st.executeQuery("select * from emp"); while(rs.next()) { System.out.println(rs.getInt(1)); System.out.println(rs.getString(2)); System.out.println(rs.getString(3)); } st.close(); con.close(); } catch(Exception e) { System.out.println(e); } finally { System.out.println("it's finally block executed"); } } }
CTS,
6 25121
What is a datasource in java?
What are the advantages of using jdbc datasource?
What is the purpose of jdbc resultset interface?
What do you understand by jdbc driver and explain its types?
What is jdbc driver manager?
How can we set null value in jdbc preparedstatement?
When do we get java.sql.SQLException: No suitable driver found?
Which interface handles transaction management in jdbc?
What is the full form of jdbc and what is its purpose?
What packages are used by jdbc?
What is ODBC and JDBC? How do you connect the Database?
Explain jdbc savepoint?
How do I stop nullpointerexception?
What is JDBC Driver interface?
What are the advantages of collection pools?