import java.sql.*;
public class JDBCExample {
public static void main(String[] args) {
String url = "jdbc:mysql://localhost:3306/db_name";
try (Connection conn = DriverManager.getConnection(url, "user", "pass")) {
System.out.println("Connected to database!");
} catch (SQLException e) { e.printStackTrace(); }
}
}
import java.sql.*;
public class JDBCExample {
public static void main(String[] args) {
String url = "jdbc:mysql://localhost:3306/db_name";
try (Connection conn = DriverManager.getConnection(url, "user", "pass")) {
System.out.println("Connected to database!");
} catch (SQLException e) { e.printStackTrace(); }
}
}