1)Connection con: 연동 정보를 담는 클래스. db에서 정보를 획득한다. 2)Statement stmt: 쿼리객체. SQL을 작성하고 실행한다. ---> 1)과 2) 둘은 언제나 함께 사용된다. insert, update, delete문 3)ResultSet rs: 결과 처리 객체 ---> select문에서 필수 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 import java.sql.*; public class DriverTestMySQL { public static void main(String args[]) { Connection con; //연동 정보를 담는 클래스 try { Class.forName("org.gjt.mm.mys..