Posted in Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; /** * * @author Azuharu */ public class LoadDriver { public static void main(String[] args) { Connection conn = null; try { Class.forName("com.mysql.jdbc.Driver").newInstance(); System.out.println("Koneksi ke MySQL Sukses"); } catch (Exception e) { } try { conn = DriverManager.getConnection("jdbc:mysql://localhost/test?"+"user=root&password="); } catch (SQLException e) { System.out.println("SQLException: "+e.getMessage()); System.out.println("SQLState: "+e.getSQLState()); System.out.println("VendorError: "+e.getErrorCode()); } } }Inti dari source code tersebut adalah, kita akan memanggil driver JDBC MySQL dan melakukan koneksi ke database test dengan user root dan password "kosong". User root dengan password "kosong" adalah default dari user di MySQL. Semoga bermanfaat.