Browsed by
Category: MySQL

MySQL JDBC Connector

MySQL JDBC Connector

Download JConnector from Oracle, unpack and copy to the jar file to …jre\lib\ext folder of your Java installation. It will be automatically included in the default library available to every project you create.   Testing the JDBC /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package helloworld; /* JDBC-MySQL */ import java.sql.DriverManager; import java.sql.Connection; import java.sql.SQLException;…

Read More Read More