what are the advantages of JDBC?

Answers were Sorted based on User's Feedback



what are the advantages of JDBC?..

Answer / subrahmanyam

JDBC is used to Provide Database Connectivity from java to
database.
Using JavaDataBaseConnectiviy We can update/retrive data
to/from database with java programs

Is This Answer Correct ?    46 Yes 6 No

what are the advantages of JDBC?..

Answer / lokesh chauhan

The advantages of JDBC(java database connectivity) are as
follows-
(1)Leverage Existing Enterprise Data
With JDBC technology, businesses are not locked in any
proprietary architecture, and can continue to use their
installed databases and access information easily -- even
if it is stored on different database management systems.

(2)Simplified Enterprise Development
The combination of the Java API and the JDBC API makes
application development easy and economical. JDBC hides the
complexity of many data access tasks, doing most of
the "heavy lifting"for the programmer behind the scenes.
The JDBC API is simple to learn, easy to deploy, and
inexpensive to maintain.

(3)Zero Configuration for Network Computers
With the JDBC API, no configuration is required on the
client side. With a driver written in the Java programming
language, all the information needed to make a connection
is completely defined by the JDBC URL or by a DataSource
object registered with a Java Naming and Directory
Interface (JNDI) naming service. Zero configuration for
clients supports the network computing paradigm and
centralizes software maintenance.


Plz correct me if i m wrong...
Regards..
Lokesh Kumar Chauhan
lokesh_kumar_chauhan@yahoo.com
Mobile - 09350229669
Noida

Is This Answer Correct ?    24 Yes 9 No

what are the advantages of JDBC?..

Answer / bhalchandra kalloorkar

The main advantage of JDBC is that it is platform
independent (as Java is platform independent) as well as
database independent. It means that any software developed
on platforms such as Linux can be used on platforms such as
Windows, with very minor changes.

Also, u can change the back-end by just changing the
driver connection URL.
i think these r the main advantages of JDBC over
others.

Is This Answer Correct ?    14 Yes 5 No

what are the advantages of JDBC?..

Answer / visruth cv

We know that the sql queries are different in different
databases. JDBC is a programming interface to communicate with the database. Whatever database we use we can choose JDBC to communicate the programme with the database, but we may need to use different queries for different databases.
The main advantage of using JDBC is we can execute database queries by the programme so that we can utilize the functionality provided by the database (with the queries). More over we can use triggers too. JDBC provides many other functionalities (like the functions provided by CallableStatemtent class) to manage the data.
Additionally, loding the driver will be different to
different databases.

visruthvsrd@gmail.com, +91-9895154767

Is This Answer Correct ?    3 Yes 0 No

what are the advantages of JDBC?..

Answer / bhalchandra kalloorkar

Using JDBC has following advantages:

1) As JDBC uses Java, your application becomes platform
independent.
2) JDBC is used as front end. So, even if Back end changes,
it requires very less changes.
3) Java is distributed. Hence your JDBC i.e. database
application can also become distributed & take advantage
of robust API that Java provides.

Is This Answer Correct ?    4 Yes 2 No

what are the advantages of JDBC?..

Answer / visruth

We know that the sql queries are different in different
databases.But in JDBC, the queries in the programme are same
for all databases so any databases can be used with the same
programme with the same jdbc queries but driver (in
programme) for the database needs to be changed with
different databases (to get communication with the
respective database). The driver will be different to
different databases.
All answers given are in some way right. Although, when we
work with it, we will know exactly. It's very simple
By Visruth, visruthvsrd@gmail.com, +91-9895154767

Is This Answer Correct ?    2 Yes 2 No

what are the advantages of JDBC?..

Answer / rakesh damera

The JDBC API defines the Java interfaces and classes that
programmers use to connect to databases and send queries. A
JDBC driver implements these interfaces and classes for a
particular DBMS vendor.

Is This Answer Correct ?    3 Yes 5 No

Post New Answer

More JDBC Interview Questions

What should be done for auto generating primary key id in a table ?

0 Answers  


What are the flow statements of jdbc?

0 Answers  


What is Statement and PreparedStatement? whatz the difference?

2 Answers  


How to check jdbc connection in linux?

0 Answers  


How to retrieve warnings in jdbc?

0 Answers  






What are the differences between stored procedure and functions?

0 Answers  


How do I stop nullpointerexception?

0 Answers  


Explain creation of statement object with connection method create method with help of an example.

0 Answers  


How do we load the drivers?

0 Answers  


Does sql allow null values ? Can we use it within where clause ?

0 Answers  


How do I write Greek ( or other non-ASCII/8859-1 ) characters to a database?

0 Answers  


What is the most common example type 1 driver?

0 Answers   Tech Mahindra,


Categories