1、常見問題html
1.安裝mysql卡在最後start service一步:沒有刪除乾淨。刪除註冊表裏全部的mysql相關就能夠了。java
之前安裝過MySQL的,再次安裝會遇到問題,這時候要看是否將MySQL刪除乾淨了。mysql
1.卸載軟件,經過控制面板 2.刪除文件夾,在安裝目錄和C:\ProgramData隱藏文件夾下 3.刪除註冊表中的mysql相關內容sql
刪除HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Eventlog\Application\MySQL文件夾 刪除HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\Eventlog\Application\MySQL文件夾。 刪除HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\MySQL的文件夾。數據庫
參考文章:http://www.javashuo.com/article/p-tqvbrpan-p.htmlmaven
2.查看可否經過cmd打開mysql測試
打開失敗的話須要配置環境變量,參考:https://jingyan.baidu.com/article/c1a3101e72fc9bde656debf7.html網站
成功結果以下:spa
1.項目目錄:code
2.導入jar包,這裏我用的是mysql-connector-java-5.1.30.jar,在官網找半天沒有下載成功,最後是在這個網站下載的:http://maven.outofmemory.cn/mysql/mysql-connector-java/5.1.30/
3.鏈接數據庫
4.數據庫中建表 我在test數據庫中創建了student表格,隨意輸入了兩條信息做爲測試數據,以下圖:
5.測試代碼 DBTest中:
package com.dgd.test;
import java.sql.*;
/**
* @author Dgd
* @create 2017-10-16-21:25
* 測試數據庫
*/
public class DBTest {
//mysql驅動包名
private static final String DRIVER_NAME = "com.mysql.jdbc.Driver";
//數據庫鏈接地址
private static final String URL = "jdbc:mysql://localhost:3306/test";
//用戶名
private static final String USER_NAME = "root";
//密碼
private static final String PASSWORD = "123456";
public static void main(String[] args){
Connection connection = null;
try {
//加載mysql的驅動類
Class.forName(DRIVER_NAME);
//獲取數據庫鏈接
connection = DriverManager.getConnection(URL, USER_NAME, PASSWORD);
//mysql查詢語句
String sql = "SELECT Sname FROM student";
PreparedStatement prst = connection.prepareStatement(sql);
//結果集
ResultSet rs = prst.executeQuery();
while (rs.next()) {
System.out.println("用戶名:" + rs.getString("Sname"));
}
rs.close();
prst.close();
} catch (Exception e) {
e.printStackTrace();
}finally {
if (connection != null) {
try {
connection.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
}
6.測試成功,顯示測試用例