News

In this article, Steven Gould introduces the 13 core technologies of the Java 2 Platform, Enterprise Edition (J2EE): JDBC, JNDI, EJBs, RMI, JSP, Java servlets, XML, JMS, Java IDL, JTS, JTA ...
The JDBC specification If you download the latest JDBC specification document from Oracle, you’ll notice that a search for ‘Java Database Connectivity’ produces zero results. An important part of ...
import java.sql.*; public class Decades { public static void main(String args[]){ try{ Class.forName("postgresql.Driver"); Connection c = DriverManager.getConnection ...
JSP Servlet JDBC CRUD Tutorial This is a simple JSP Servlet JDBC CRUD example with MySQL. It is designed as a complete beginner-friendly tutorial project to help you learn how to build a Java web ...
Spring Boot JDBC: Connect, Query, and Log with H2 This project demonstrates a basic in-memory database connection using Spring Boot, Spring JDBC, and an H2 database. It is designed to show fundamental ...
MySQL JDBC driver for Hibernate and JPA 3 Developers should also be careful that they are no longer referencing the old MySQL JDBC driver. The old com.mysql.jdbc.Driver should not be used anymore.