Posts

Showing posts from December, 2011

Java Quiz pra UAS Lab A

Main.java /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package quiz_11110446; /** * * @author ridwan020920 */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here new frmmhs().setVisible(true); } } koneksi.java /*  * To change this template, choose Tools | Templates  * and open the template in the editor.  */ package quiz_11110446; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; import java.util.ArrayList; import java.util.List; /**  *  * @author ridwan020920  */ public class koneksi { Connection con = null; Statement st = null; String url = "jdbc:mysql://localhost:3306/biodata"; String user = "root"; String pass = ""; public koneksi() { try{         Class.forName("com.mysql.jdbc...