Explain the two tier and three tier architecture of jdbc.



Explain the two tier and three tier architecture of jdbc...

Answer / Mukesh Singh

The two-tier architecture consists of a client application and a database. The JDBC driver acts as a bridge between them. In contrast, the three-tier architecture adds an application server layer between the client application and the database, allowing for better scalability and maintenance. This middle tier can handle tasks like authentication, session management, and business logic.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JDBC Interview Questions

What is JDBC PreparedStatement?

1 Answers  


Does multiple concurrent open statements per connection are supported by the JDBC-ODBC Bridge?

2 Answers  


what is CallableStatement and what is its usage?

1 Answers  


What is device controller?

1 Answers  


What is an advantage of using the jdbc connection pool?

1 Answers  


Explain the importance of drivermanager.

1 Answers  


Is it possible to connect to multiple databases? Using single statement can we update or extract data from two or three or many databases?

1 Answers  


How the information about db(database) can be retrieved?

3 Answers  


How to get a whole row of data at once?

2 Answers  


How many ways that we can view a result set?

1 Answers  


What is database connection pooling? Advantages of using a connection pool?

1 Answers  


How we store procedure in oralce for callable statements in jdbc

1 Answers  


Categories