what is JDBC?
Answers were Sorted based on User's Feedback
Answer / v2kagitala
JDBC(java Database Connectivity) is an API(Application
program Interfaces), that is useful to write a java program
to connect any database,and retrieve the data form the
database and utilize the data in the java program.
| Is This Answer Correct ? | 21 Yes | 0 No |
Answer / modi
The JDBC API is the industry standard for database-independent connectivity between the Java programming language and a wide range of databases. The JDBC API provides a call-level API for SQL-based database access. JDBC technology allows you to use the Java programming language to exploit "Write Once, Run Anywhere" capabilities for applications that require access to enterprise data.
The JDBC library includes APIs for each of the tasks commonly associated with database usage:
1.Making a connection to a database
2.Creating SQL or MySQL statements
3.Executing that SQL or MySQL queries in the database
4.Viewing & Modifying the resulting records
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / aejaz ahmad
JDBC Tchnology is an Api (Application Programoming
Interface)that provides cross DBMS connectivity to a wide
range of SQL database and access to other tabular data
sourse JDBC is a set of programing interface.
| Is This Answer Correct ? | 3 Yes | 1 No |
What are the different types of resultset?
What is java soft framework?
How can you make a connection?
what is the difference between SENSITIVE and INSENSITIVE?
What is 2-tier and 3-tier architecture?
What are the factors that the jdbc driver performance depends upon?
What is odbc. how is it related to sql cli?
What is the benefit of having jdbcrowset implementation? Why do we need a jdbcrowset like wrapper around resultset?
I have the choice of manipulating database data using a byte[] or a java.sql.blob. Which has best performance?
Which type of JDBC driver is the fastest one?
How many types of jdbc drivers are there?
What is JDBC Transaction Management and why do we need it?