logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • Is the JDBC-ODBC Bridge multi-threaded ?


  • Correct Answer
  • No The JDBC-ODBC Bridge does not support multi threading The JDBC-ODBC Bridge uses synchronized methods to serialize all of the calls that it makes to ODBC Multi-threaded Java programs may use the Bridge, but they won't get the advantages of multi-threading 


  • Technology problems


    Search Results


    • 1. What are the different JDBC drivers available ?
    • Discuss
    • 2. What is a ResultSet ?
    • Discuss
    • 3. What is DriverManager ?
    • Discuss
    • 4. What is JDBC ?
    • Discuss
    • 5. What will be the output of the following code snippet? Object s1 = new String("Hello"); Object s2 = new String("Hello"); if(s1 == s2) { System.out.println("s1 and s2 are =="); }else if (s1.equals(s2)) { System.out.println("s1 and s2 are equals()"); }
    • Discuss
    • 6. What is the difference between an Interface and an Abstract class?
    • Discuss
    • 7. What is the purpose of garbage collection in Java, and when is it used ?
    • Discuss
    • 8. What are pass by reference and passby value ?
    • Discuss
    • 9. Difference between Swing and Awt ?
    • Discuss
    • 10. What is synchronization and why is it important ?
    • Discuss


    Comments

    There are no comments.

Enter a new Comment