inblog logo
|
gyul
    자바 (JAVA)

    [자바 (JAVA)] 54. JDBC 연결 테스트

    귤's avatar
    귤
    Mar 05, 2025
    [자바 (JAVA)] 54. JDBC 연결 테스트
    Contents
    DB 연결 테스트

    DB 연결 테스트

    import java.sql.Connection; import java.sql.DriverManager; public class DBConnection { public static Connection getConnection() { String url = "jdbc:mysql://localhost:3306/store"; String username = "root"; String password = "bitc5600!"; try { Class.forName("com.mysql.cj.jdbc.Driver"); Connection conn = DriverManager.getConnection(url, username, password); return conn; } catch (Exception e) { throw new RuntimeException(e); } } }
     
    Share article

    gyul

    RSS·Powered by Inblog