자바~mysql Connection test import java.sql.*; public class Main { public static void main(String[] args) throws SQLException { System.out.println("Hello world!"); String url = "jdbc:mysql://127.0.0.1:3306/manga_cafe"; String username = "root"; String password = "root"; Connection connection = null; try { Class.forName("com.mysql.cj.jdbc.Driver"); connection = DriverManager.getConnection(url, username, password); // Check .. 2024. 1. 12. 이전 1 다음