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 9711While 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,
2224Hi 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 9742I have written a program to connect to database using odbc.Can this Application run on any Platform????
2 4728Give 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 4954java.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 25302
How does a file store compare with a jdbc store?
What is data source in java?
What are jdbc?
Is java a database?
Which type of driver provides jdbc access via one or more odbc drivers?
How many categories of jdbc drivers are there?
What does executeupdate return in java?
What is isolation level? How to set it?
Is jdbc connection secure?
Can resultset be null in java?
What are the classes and methods used for sending sql statements to database?
What is the reason why we need a jdbcrowset like the wrapper around resultset?
Why should we close database connections in java?
Why do we use jdbc in java?
How do we load the drivers?