f********r 发帖数: 16 | 1 我的MYSQL server 是装在redhat6.2下.我试图从远程访问. 我是第一次接触JDBC
和mysql.自己想的连接结构是这样的: MySQL server在远端,IP is
137.132.159.221 ; 我在另一台pc上试图访问它.该pc上安装了JDK1.2.2,
MM.MySQL. 我的程序应用MM.MySQL提供的class,MM.MySQL再和JDBC communicate.
JDBC 完成网络连接以及数据库存取等工作. 这样来作,有没有问题?
另外,我用MM.MySQL连接remote MySQL server的时候,出现了这种错误:
SQLException:Invalid authorization specification: Access denied for
user:'guest@'(Using passowrd: NO)
SQLState:28000
VendorError:1045
关于建立连接的语句,我是这样写的(实际上是从MM.MySQL的document里抄的,
不该有错:():
Connection C = DriverManage | m******t 发帖数: 2416 | 2 The exception shows "Using password: NO", but you said the password
is guest. I guess the last part of the connection string should be
"?user=guest&passwd=guest". Not sure though, check out the document
carefully.
【在 f********r 的大作中提到】 : 我的MYSQL server 是装在redhat6.2下.我试图从远程访问. 我是第一次接触JDBC : 和mysql.自己想的连接结构是这样的: MySQL server在远端,IP is : 137.132.159.221 ; 我在另一台pc上试图访问它.该pc上安装了JDK1.2.2, : MM.MySQL. 我的程序应用MM.MySQL提供的class,MM.MySQL再和JDBC communicate. : JDBC 完成网络连接以及数据库存取等工作. 这样来作,有没有问题? : 另外,我用MM.MySQL连接remote MySQL server的时候,出现了这种错误: : SQLException:Invalid authorization specification: Access denied for : user:'guest@'(Using passowrd: NO) : SQLState:28000 : VendorError:1045
|
|