What is JDBC ?


An JDBC for database-independent connectivity between the J2EE platform and a wide range of data sources.



Explore posts in the same categories: J2EE Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • What is the difference between JDBC and ODBC?
  • a) OBDC is for Microsoft and JDBC is for Java applications. b) ODBC can’t be directly used with Java because it...
  • How many types of JDBC Drivers are present and what are they?
  • There are 4 types of JDBC Drivers JDBC-ODBC Bridge Driver Native API Partly Java Driver Network protocol Driver JDBC Net pure Java Driver...
  • What is JDBC? Describe the steps needed to execute a SQL query using JDBC.
  • The JDBC is a pure Java API used to execute SQL statements. It provides a set of classes and interfaces...
  • What is JDBC?
  • JDBC is a set of Java API for executing SQL statements. This API consists of a set of classes and...
  • Is the JDBC-ODBC Bridge multi-threaded?
  • No. The JDBC-ODBC Bridge does not support concurrent access from different threads. The JDBC-ODBC Bridge uses synchronized methods to serialize...
  • What is JDBC for CDC/FP?
  • The JDBC Optional Package for CDC/Foundation Profile (JDBCOP for CDC/FP) is an API that enables mobile Java applications to communicate...
  • How can you load the drivers?
  • Loading the driver or drivers you want to use is very simple and involves just one line of code. If,...
  • What are the steps involved in establishing a JDBC connection?
  • This action involves two steps: loading the JDBC driver and making the connection....
  • What are the types of JDBC Driver Models and explain them?
  • There are two types of JDBC Driver Models and they are: a) Two tier model and b) Three tier model Two tier model:...
  • What are the steps in the JDBC connection ?
  • While making a JDBC connection we go through the following steps : Step 1 : Register the database driver by...

    Comment:

    You must be logged in to post a comment.