- DBUtils - Discussion
- DBUtils - Useful Resources
- DBUtils - Quick Guide
- DBUtils - Using DataSource
- DBUtils - Custom Row Processor
- DBUtils - Custom Handler
- DBUtils - MapListHandler Class
- DBUtils - ArrayListHandler Class
- DBUtils - BeanListHandler Class
- DBUtils - BeanHandler Class
- DBUtils - ResultSetHandler interface
- DBUtils - AsyncQueryRunner interface
- DBUtils - QueryRunner interface
- DBUtils - Delete Query
- DBUtils - Update Query
- DBUtils - Read Query
- DBUtils - Create Query
- DBUtils - First Application
- DBUtils - Environment Setup
- DBUtils - Overview
- DBUtils - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Apache Commons DBUtils - Using DataSource
So far, we ve using connection object while using QueryRunner. We can also use datasource seemlessly. The following example will demonstrate how to read a record using Read query with the help of QueryRunner and datasource. We ll read a record from Employees Table.
Syntax
QueryRunner queryRunner = new QueryRunner( dataSource ); Employee emp = queryRunner.query("SELECT * FROM employees WHERE first=?", resultHandler, "Sumit");
Where,
dataSource − DataSource object configured.
resultHandler − ResultSetHandler object to map result set to Employee object.
queryRunner − QueryRunner object to read employee object from database.
To understand the above-mentioned concepts related to DBUtils, let us write an example which will run a read query. To write our example, let us create a sample apppcation.
Step | Description |
---|---|
1 | Update the file MainApp.java created under chapter | .
2 | Compile and run the apppcation as explained below. |
Following is the content of the Employee.java.
pubpc class Employee { private int id; private int age; private String first; private String last; pubpc int getId() { return id; } pubpc void setId(int id) { this.id = id; } pubpc int getAge() { return age; } pubpc void setAge(int age) { this.age = age; } pubpc String getFirst() { return first; } pubpc void setFirst(String first) { this.first = first; } pubpc String getLast() { return last; } pubpc void setLast(String last) { this.last = last; } }
Following is the content of the CustomDatasource.java.
import javax.sql.DataSource; import org.apache.commons.dbcp2.BasicDataSource; pubpc class CustomDataSource { // JDBC driver name and database URL static final String JDBC_DRIVER = "com.mysql.jdbc.Driver"; static final String DB_URL = "jdbc:mysql://localhost:3306/emp"; // Database credentials static final String USER = "root"; static final String PASS = "admin"; private static DataSource datasource; private static final BasicDataSource basicDataSource; static { basicDataSource = new BasicDataSource(); basicDataSource.setDriverClassName(JDBC_DRIVER); basicDataSource.setUsername(USER); basicDataSource.setPassword(PASS); basicDataSource.setUrl(DB_URL); } pubpc static DataSource getInstance() { return basicDataSource; } }
Following is the content of the MainApp.java file.
import java.sql.SQLException; import org.apache.commons.dbutils.QueryRunner; import org.apache.commons.dbutils.ResultSetHandler; import org.apache.commons.dbutils.handlers.BeanHandler; pubpc class MainApp { pubpc static void main(String[] args) throws SQLException { DbUtils.loadDriver(JDBC_DRIVER); QueryRunner run = new QueryRunner(CustomDataSource.getInstance()); ResultSetHandler<Employee> resultHandler = new BeanHandler<Employee>(Employee.class); Employee emp = queryRunner.query("SELECT * FROM employees WHERE id=?", resultHandler, 103); //Display values System.out.print("ID: " + emp.getId()); System.out.print(", Age: " + emp.getAge()); System.out.print(", First: " + emp.getFirst()); System.out.println(", Last: " + emp.getLast()); } }
Once you are done creating the source files, let us run the apppcation. If everything is fine with your apppcation, it will print the following message.
ID: 103, Age: 33, First: Sumit, Last: MittalAdvertisements