Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have listened that type 2 driver needs some database library's apis. I cant understand above statement can you explain?

share|improve this question

3 Answers

This link describe the difference between the 4 types of driver clearly. You may want to take a look at it.

Type 2 driver is database specific, as said in the article in the above link:

The distinctive characteristic of type 2 jdbc drivers are that Type 2 drivers convert JDBC calls into database-specific calls i.e. this driver is specific to a particular database. Some distinctive characteristic of type 2 jdbc drivers are shown below. Example: Oracle will have oracle native api.

share|improve this answer

I have listened that type 2 driver needs some database library's apis.

Yes. Type 2 drivers convert JDBC calls into database-specific calls means this is specific to a particular database. For example- Oracle will have its own oracle native driver API. While the Type 4 uses java networking libraries to communicate directly with the database server.

share|improve this answer
means for this type 2 driver oracle should be installed at sytem where our application is running and is it platform dependent? – Bhadri May 16 '11 at 5:15
@Bhadri: not necessary to install oracle on same machine. no this is not platform dependent. – Harry Joy May 16 '11 at 5:17

Just a paragraph snippet from this link. Also, visit the helpful link : JDBC Driver and Its Types

Type 2: Requires the DB2 Client is also installed on the same server as the JDBC driver because the driver is simply a front-end to the DB2 Client. It points to the alias you configured on the Client for your database, similar to an ODBC driver.

Type 4: Connects to the database on server directly via the hostname/port.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.