Does multiple concurrent open statements per connection are
supported by the JDBC-ODBC Bridge?
Answer Posted / rds
Yes. However theoritically the answer is "NO". Per
Connection there is only one Statement object is allowed.
However, i have tried using 2 statement, i did not find any
exception thorwn, in JDK 1.4(I am using).
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How do I load a database driver with JDBC 4.0 / Java 6?
What are the different types of locking in JDBC?
How can I manage special characters when I execute an insert query?
Which Java and java.sql data types map to my specific database types?
What is the use of callablestatement? Name the method, which is used to prepare a callablestatement.
code to insert values/rows into oracle database from a java swing textfield when a button is pressed(using preparedstatements)
Which database is used for java?
Why isn't the java.sql.DriverManager class being found?
How java can be connected to a database?
There is a method getColumnCount in the JDBC API. Is there a similar method to find the number of rows in a result set?
How do I write Greek ( or other non-ASCII/8859-1 ) characters to a database?
Is it possible to connect to multiple databases simultaneously? Using single statement can one update or extract data from multiple databases?
Why do we need jdbc?
Explain some new features available in jdbc 4.0?
What does adapter class provide?