Entries Published On June, 2017
Mysql connector jar download
You can download MySql Connector Jar here mysql-connector-java-5.1.42-bin.rar You can visit https://dev.mysql.com/downloads/connector/j/ for latest updates See how to Add the jar to Classpath. Check the below link to add the Jar in Classpath in Eclipse https://chillyfacts.com/how-to-add-jar-file-in-eclipse-java-project/
Continue reading
Java program to connect to mysql database
This tutorial shows a Simple java program to connect to MySql database and do a basic select operation from the table. Project Structure in Ecllipse IDE. This project uses MySql Connector jar. You have to download it and add to class path. Download Mysql Connector jar here. DB_Connection.java package com.chillyfacts.com; import java.sql.Connection; import java.sql.DriverManager; public class …
Continue reading