31 January 2018

How to Connect to a MySQL Database With Java


mysql-connect-java

Java provides JDBC (Java DataBase Connectivity) as a part of the Java SDK (Software Development Kit). Using this API, it is very easy to connect to a relational database and perform common operations such as querying, inserting, updating, and deleting records. While the core JDBC API is included in java, connecting to a particular database such as MySQL or SQL Server requires an additional component known as the database driver. This database driver is a software component which translates the core JDBC calls into a format understood by that database. In this article, let us look at the details of...

Read the full article: How to Connect to a MySQL Database With Java


Read Full Article

No comments:

Post a Comment