Answers for "jdbc"

0

jdbc dependency

<dependency>
<groupId>oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.3</version>
</dependency>
Posted by: Guest on January-28-2021
1

jdbc interface

-Connection = Helps our java project
connect to database

-Statement = Helps to write and execute SQL query

-ResultSet = A DataStructure where
the data from query result stored
Posted by: Guest on January-10-2021
0

jdbc

JDBC is an SQL-based API created by Sun Microsystems to enable 
Java applications to use SQL for database access.

Register the Driver class
Create connection
Create statement
Execute queries
Close connection
Posted by: Guest on October-13-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language