|
发表于 2005-6-5 23:43:20
|
显示全部楼层
server: "Host 'localhost.localdomain' is not allowed to connect to this MySQL server"
[root@shlinux tomcat]# cat webapps/ROOT/testdb.jsp
<%
java.sql.Connection conn;
java.lang.String strConn;
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
java.sql.DriverManager.getConnection("jdbc:mysql://localhost/test","root","");
%>
mysql -u root test 正常
也不知道是什么... |
|