What is thin driver and thick driver. why it is called so?
Answer Posted / harmandeep singh
Both these drivers are used to connect your java program to
database(oracle).
Thin drivers (comes under type 4 drivers) are completely
written in java.You can connect to oracle without oracle
client installed on ur pc.
Thick drivers(comes under type 1 or i think 2,3 also)are not
written completely in java.You need oracle client(like odbc
driver,jdbc-odbc bridge drivers etc)for communication
between java program and oracle.
As thin driver's implementation is smaller as compared to
thick drivers,so they are are called as such i think.
| Is This Answer Correct ? | 32 Yes | 5 No |
Post New Answer View All Answers
What is a double?
What are different types of multitasking?
How objects of a class are created if no constructor is defined in the class?
How can we access some class in another class in java?
Is java ee a framework?
Why is static used?
What is int lol?
Add a value x to array from index l to r where 0 <= l <= r <= n-1
What is the benefit of inner / nested classes ?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (
What are use cases?
Explain different states of a thread in java?
Is set ordered in java?
How to access arraylist elements in java?
What is a marker interface?