what is diff btwn JNDI&JDBC?
Answers were Sorted based on User's Feedback
Answer / weblogic
JNDI is the directory which contains the list of objects
defined on the server. When the user requests for a
connection pool, the code would look for the object on the
JNDI and would get the requested connection pool from the
datasource.
JDBC is the one which does all the interactions with the
database. An application will lookup the JNDI to get a
connection pool for it to interact with the database.
Is This Answer Correct ? | 20 Yes | 4 No |
Answer / ashok
JDBC is used to connection from DB.
JNDI is is used in connection pooling..
In weblogic server therir will be a JNDI Tree Option..
By Using Jndi we can get Certail connections from Database
at a time..and those connection will distubute to different
people...if connection are over then their will be increment
in option inserver ...we can set taht according to our
requirment..
So final statement is in JNDI we are not going to
interact(getting connection) with Database .we will in
interact with server..
But in case of JDBC we will interact with Database directly
for gettin connection
Is This Answer Correct ? | 12 Yes | 6 No |
Answer / bhasakr
JNDI whic is used for java naming and directory interfaces
purposes,where as in the case of JDBC we can create the
connections.
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / rajesh
JDBC and JNDI are two diff APIs from JEE spec
JDBC is dealing with Database connectivities
JNDI is act as an interface for many Naming services like
NIS,DNS,LDAP etc
I think the question is some what tricky
there is no similarities b/t JNDI and JDBC so obiviously no
diiference :)
Is This Answer Correct ? | 10 Yes | 8 No |
Answer / suman singh
For understanding JDBC and JNDI....we need to understand web container...web container is more similar to jvm..manager thread, security e.tc......In case of JDBC if multiple user request then object is created according to number of user. IN jdbc reuse ability of object is not possible. But in case of JNDI ..if three request is simultaneously coming from browser to web container ..then three object is created ..but when 4th ,5th ...request is coming it is use the object of previous request ..IN case of JNDI it is helpful in case of server crashes....You may be relate this topic with applet(jdbc)and servlet(JNDI).......
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sowji
NDI is a protocol / mechanism used to lookup data / information, resources from a SPI that obeys the JNDI format. JNDI is available for manipulating naming services and directory services only. Examples include JNDI trees of EJB Containers, LDAP Directory Servers etc...
http://java.sun.com/products/jndi/overview.html
JDBC is a database specific protocol that Database vendors support for Java Data Access.
http://java.sun.com/products/jdbc/overview.html
JNDI is used when your are trying to advertise and lookup data from a naming service or directory service and JDBC is used when you are querying / updating data in a Database server.
Is This Answer Correct ? | 1 Yes | 2 No |
Weblogic admin don't know the admin credentials of weblogic 8.1 UI..how can he get the credentials?
In how many ways we can implementg session replication?
what is critical environment in weblogic
How do I identify the document type of an xml document? : BEA Weblogic
What is bootup process?
Explain The Term Clustering ?
What is the difference between Production mode and Development mode in WebLogic?
What are the modes of operation for Weblogic server domains ?
How can default JVM be changed to other?
How do I do http tunneling? : BEA Weblogic
How can I control on which weblogic server(s) my application will run? : BEA Weblogic
Must ejbs be homogeneously deployed across a cluster? Why?