我一直有問題指定的路徑(我有兩個文件:comments.frm和db.opt在以下文件夾中:C:\ xampp \ mysql \ data \ feedback)...我使用XAMPP和mySQL。我不知道爲什麼我有錯誤?請看看我的這部分代碼:如何使用localhost指定mySQL的路徑?
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=1234");
PS:我的本地主機密碼爲12345678
你有什麼錯誤? – 2013-04-04 08:03:49
由於您將'user'連接到'feedback',因此連接字符串將會出錯:'jdbc:mysql:// localhost // feedbackuser = root&password = 1234'。 – maba 2013-04-04 08:06:57