你好,
我已经在eclipse中与java和驱动mysql建立了连接,一切正常,但是当我尝试向数据库发送请求时,响应非常慢,需要1分钟以上。
谢谢
package connection_mysql;
import java.sql.*;
`公共类主{私有静态连接连接=空;私有静态语句语句 = null; 私有静态 PreparedStatement PreparedStatement = null; 私有静态结果集结果集=空;
public static void main(String[] args) {
String pilote = "com.mysql.jdbc.Driver";
System.out.println("---------------------------");
try{
Class.forName(pilote);
System.out.println("---------1------------------");
connect = DriverManager.getConnection("jdbc:mysql://localhost/feedback?"
+ "user=sqluser&password=sqluserpw");
Statement statement = connect.createStatement();
ResultSet resultSet = statement
.executeQuery("select * from FEEDBACK.COMMENTS");
while(resultSet.next()){
System.out.println("---------------------------");
System.out.println("nom etudiant "+resultSet.getString("myuser"));
}
}catch(Exception e){
System.out.print("errooor"+e);
}
}
}