From 8f94a5887ea85fc0059850253068e101cafd2062 Mon Sep 17 00:00:00 2001 From: Tobias Uhmann Date: Sat, 25 Feb 2023 19:49:54 +0100 Subject: [PATCH] Update 101-jdbc-template.md (#3478) Clarify in the first sentence that "the JDBC core package" is about Spring --- .../roadmaps/java/content/106-java-jdbc/101-jdbc-template.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/java/content/106-java-jdbc/101-jdbc-template.md b/src/data/roadmaps/java/content/106-java-jdbc/101-jdbc-template.md index 01f8f67a2..69ba3ff59 100644 --- a/src/data/roadmaps/java/content/106-java-jdbc/101-jdbc-template.md +++ b/src/data/roadmaps/java/content/106-java-jdbc/101-jdbc-template.md @@ -1,7 +1,7 @@ # 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. +JDBCTemplate is a central class in Spring's 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. Visit the following resources to learn more: -- [JDBC Template tutorial](https://www.baeldung.com/spring-jdbc-jdbctemplate) \ No newline at end of file +- [JDBC Template tutorial](https://www.baeldung.com/spring-jdbc-jdbctemplate)