ok chekidot.
eiiiiiit seblum dimulai yang ane beri warna KUNING itu yangharus diketik....
1. Buat
project baru,
2. Klik
kanan pada library , add library ( pilih MYSQL JDBC Driver)
1. Tambahkan
1 file new Java Class, beri nama koneksi, kemudian ketik rumus dibawah ini
/*
* To
change this template, choose Tools | Templates
*
and open the template in the editor.
*/
package
teskoneksi;
import java.sql.*;
import javax.swing.*;
/**
*
*
@author user
*/
public
class Teskoneksi {
Connection conn=null;
/**
* @param args the command line arguments
*/
public static Connection ok(){ //rumus ini diketik secara manual ,”ok”
variable untuk dipanggil
try{
Class.forName("com.mysql.jdbc.Driver");
Connection conn=DriverManager.getConnection("jdbc:mysql://localhost/dblatihan","root","");
// dblatihan adalah nama dari databasenya , "root" = nama user di mysql, "" = passwordnya kalo tidak ada password, beri "" saja
JOptionPane.showMessageDialog(null,"Koneksi sukses");
return conn;
}catch(Exception e){
JOptionPane.showMessageDialog(null,e);
return null;
}
}
public static void main(String[] args) {
// TODO code application logic here
}
}
1. Buat
jframeform baru , tambahkan satu buah jbutton
Ketikan rumus
/*
* To
change this template, choose Tools | Templates
*
and open the template in the editor.
*/
/*
*
Formutama.java
*
*
Created on Sep 12, 2012, 8:15:01 PM
*/
package teskoneksi; // yang berwarna kuning yang diketik
import java.sql.*;
import javax.swing.*;
/**
*
* @author user
*/
public class Formutama extends
javax.swing.JFrame {
Connection koneksi=null;
/** Creates new form Formutama */
public Formutama() {
initComponents();
}
private
void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
Connection
koneksi=Teskoneksi.ok();
}
Selanjutanya coba diruning, klik tombol tes jika berhasil sebuah message box akan keluar
sekian tutorial dari ane, kalau ada kesalahan maohon maaf maklum masih newbee.... CMIIW
blog kamu isinya bagus bro...
ReplyDelete