이클립스 자바랑 MySQL 연결 후 로그인 package db_test; import java.sql.*; import java.util.*; public class LoginMain { public static void main(String[] args) { Scanner scan = new Scanner(System.in); Connection conn; Statement stmt = null; try { Class.forName("com.mysql.jdbc.Driver"); // MySQL 드라이버 로드 conn = DriverManager.getConnection ("jdbc:mysql://localhost:3306/java", "root","test1234"); // JDBC 연결 System...