From 84452296331af6d68e44a415826cf6716b207de6 Mon Sep 17 00:00:00 2001 From: Poonam kumawat <103033530+poonam-kumawat@users.noreply.github.com> Date: Sun, 2 Oct 2022 17:18:56 +0530 Subject: [PATCH] Add JDBC template content (#1992) * Update 101-jdbc-template.md * Update content/roadmaps/110-java/content/106-java-jdbc/101-jdbc-template.md * Update content/roadmaps/110-java/content/106-java-jdbc/101-jdbc-template.md Co-authored-by: Kamran Ahmed --- .../110-java/content/106-java-jdbc/101-jdbc-template.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/110-java/content/106-java-jdbc/101-jdbc-template.md b/content/roadmaps/110-java/content/106-java-jdbc/101-jdbc-template.md index f40fe5fbc..8d285a411 100644 --- a/content/roadmaps/110-java/content/106-java-jdbc/101-jdbc-template.md +++ b/content/roadmaps/110-java/content/106-java-jdbc/101-jdbc-template.md @@ -1 +1,3 @@ -# Jdbc template \ No newline at end of file +# JDBC Template + +JDBCTemplate is a central class in the JDBC core package that simplifies the use of JDBC and helps to avoid common errors. It internally uses JDBC API and eliminates many problems with JDBC API. It executes SQL queries or updates, initiating iteration over ResultSets, catching JDBC exceptions, and translating them to the generic. It executes core JDBC workflow, leaving application code to provide SQL and extract results. It handles the exception and provides informative exception messages with the help of exception classes defined in the `org.springframework.dao` package.