import java.sql.DriverManager;
import java.sql.Connection;
import java.sql.SQLException;
public class JDBCExample {
public static void main(String[] argv) {
System.out.println("-------- MySQL JDBC Connection Testing ------------");
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
System.out.println("Where is your MySQL JDBC Driver?");
e.printStackTrace();
return;
}
System.out.println("MySQL JDBC Driver Registered!");
Connection connection = null;
try {
connection = DriverManager
.getConnection("jdbc:mysql://localhost:3306/testDB","root", "password");
} catch (SQLException e) {
System.out.println("Connection Failed! Check output console");
e.printStackTrace();
return;
}
if (connection != null) {
System.out.println("You made it, take control your database now!");
} else {
System.out.println("Failed to make connection!");
}
}
}
'Database > MySQL' 카테고리의 다른 글
MariaDB Host 'xxx.xx.xxx.xxx' is not allowed to connect to this MariaDB server (0) | 2016.08.08 |
---|---|
error: 'Access denied for user 'root'@'localhost' (using password: NO)' (0) | 2016.07.27 |
Table character set 확인 방법 (0) | 2016.07.11 |
MySQL 예약어 (0) | 2013.03.05 |
mysql에서 한글 깨짐 현상 (0) | 2011.04.22 |
댓글