What is jdbc connectivity?
Answers
Answered by
0
Java Database Connectivity (JDBC) is an application programming interface (API) for the programming language Java, which defines how a client may access a database. It is Java based data access technology and used for Java database connectivity. It is part of the Java Standard Edition platform, from Oracle Corporation. It provides methods to query and update data in a database, and is oriented towards relational databases. A JDBC-to-ODBC bridge enables connections to any ODBC-accessible data source in the Java virtual machine (JVM) host environment.
Answered by
2
JDBC is a Java API to connect and execute the query with the database.
The three main functions of JDBC are :
1. Establishing a connection with a database or other tabular data source
2. Sending SQL commands to the database
3. Processing the results
The three main functions of JDBC are :
1. Establishing a connection with a database or other tabular data source
2. Sending SQL commands to the database
3. Processing the results
Similar questions