Saturday, December 29, 2018

JDBC: is an acronym for 'Java Data Base Connectivity'. It is used for accessing the databases from Java Applications. JDBC API allows to do CRUD operations on Database.
Steps to connectivity between Java program and Database:

  1. Loading the Driver
  2. Create the Connections
  3. Create a Statement
  4. Execute the Query
  5. Close the Connections.
Loading the Driver:
We can register the driver using Class.forName("oracle.jdbc.driver.OracleDriver");
Class.forName() load the driver's class file into memory, which automatically registers it.
In JDBC API, we have java.sql.Driver, it is only an interface and it is available in JDK.
Create the Connections:
We can establish the connection using
Connection conn=DriverManager.getConnection(String url, String user, String password);
url can be created as "jdbc:oracle:thin:@hostname:port Number:databaseName"

Create a Statement: Interface define the methods and properties that enable you to send SQL or PL/SQL commands and receive data from your database.
Statement st = con.createStatement();

Execute the Query: Reads data from a database query and returns the data in a result set. The java.sql.ResultSet interface represents the result set of a database query.
ResultSet rs=stmt.executeQuery("select query);
Close the Connections:
The close() method of Connection interface is used to close the connection.
conn.close()

Related Posts:

  • Anagram program in java package seleniumrepo; import java.util.Arrays; /*  * Check whether two strings are anagram of each other  * Ex: LISTEN <=> SILENT, TRIANGLE <=> INTEGRAL, HEART <=> EARTH  */ public cl… Read More
  • Lambda Expressions in Java Lambda Expressions: It is a anonymous(nameless) function. It does not has method name, method return type nor modifiers            General Method:            … Read More
  • Extract numeric value from a String                    package seleniumrepo;                           public class ExtractNumerics{  … Read More
  • Functional Interface in java Functional Interface: is an interface it contains only one abstract method and declares with annotation @FunctionalInterface E.g:                         @Func… Read More
  • How to iterate through a Map Elements we cannot iterate a Map directly using iterators, because Map are not Collection. There are different methods to iterate through MAP elements: Method 1: Using Iterator and keySet(). package seleniumrepo; import java.ut… Read More

0 comments:

Post a Comment

Selenium Training in Realtime

Blog helps to a student or IT employee to develop or improve skills in Software Testing.

Followers

About Me

My photo
Hyderabad, Andhra Pradesh, India
I am Automation Testing Professional. I have completed my graduation in B.Tech (Computers) from JNTU Hyderabad and started my career in Software Testing accidentally since then, I passionate on learning new technologies

Contact Form

Name

Email *

Message *

Popular Posts