我有以下问题:
我无法使用 java 连接到 MySQL。
这是代码:
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Date;
public class MySQLAccess {
private Connection connect = null;
private Statement statement = null;
private PreparedStatement preparedStatement = null;
private ResultSet resultSet = null;
public void readDataBase() throws Exception {
try {
// This will load the MySQL driver, each DB has its own driver
Class.forName("com.mysql.jdbc.Driver");
// Setup the connection with the DB
connect = DriverManager
.getConnection("jdbc:mysql://localhost/feedback?"
+ "user=root&password=");
它向我展示了这个问题:
Exception in thread "main" java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
我有 Windows .. 我在 PATH 环境变量中导入了 jdbc,如下所示:
C:\Program Files (x86)\Java\jre6\lib\ext\mysql-connector-java-5.1.21-bin.jar
这样对吗?
除此之外,我不知道该怎么写密码=.... 因为我想要它没有密码。是这样吗?password=");
最后,我也应该安装另一个驱动程序吗?
谢谢您,很抱歉给您带来麻烦,但我是使用 Java 连接 MySQL 的新手,而 de.mysql 对我没有太大帮助....