This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tampil(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void tampil() | |
{ | |
try { | |
Connection con = koneksi.getKoneksi(); | |
Statement stt = con.createStatement(); | |
String sql = "select Nama, Jenis_kelamin, Jurusan from nama_tabel_anda where NIM='"+jComboBoxNIM.getSelectedItem()+"'"; | |
ResultSet res = stt.executeQuery(sql); | |
while(res.next()){ | |
Object[] ob = new Object[3]; |