方式1
為東寧等地區(qū)用戶提供了全套網(wǎng)頁設計制作服務,及東寧網(wǎng)站建設行業(yè)解決方案。主營業(yè)務為成都網(wǎng)站制作、網(wǎng)站設計、外貿(mào)網(wǎng)站建設、東寧網(wǎng)站設計,以傳統(tǒng)方式定制建設網(wǎng)站,并提供域名空間備案等一條龍服務,秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!
/usr/local/mysql5.7/bin/mysql -p
此方法默認采用root@localhost用戶登錄,
方式2
/usr/local/mysql5.7/bin/mysql -uroot -p -S /app/data/mysql3307/tmp/mysql.sock
方式3
/usr/local/mysql5.7/bin/mysql -uroot -p -h 127.0.0.1 -P3307
此方式的用戶和方式 2 的不同,如下
root@localhost 和root@'127.0.0.1'是不同的用戶
方式4
/usr/local/mysql5.7/bin/mysql -uroot -p -h localhost -P3307
此方式和方法1 及方法 2 用戶相同
mysql
-h
遠程mysql的ip
-p
mysql端口
-u
用戶名
-p密碼
如:
mysql
-h
192.168.0.2
-p
3306
-u
root
-p123
遠程數(shù)據(jù)庫(192.168.0.2),端口3306,用戶名為:root,密碼:123
1.MySQL安裝,不會的朋友可以看連接:
下面來創(chuàng)建一個數(shù)據(jù):
mysqlCREATE DATABASE test; //創(chuàng)建一個數(shù)據(jù)庫
mysqluse test; //指定test為當前要操作的數(shù)據(jù)庫
mysqlCREATE TABLE user (name VARCHAR(20),password VARCHAR(20)); //創(chuàng)建一個表user,設置兩個字段。
mysqlINSERT INTO user VALUES('huzhiheng','123456'); //插入一條數(shù)據(jù)到表中
2.打開Eclipse,創(chuàng)建一個項目(my),
操作:右鍵點擊my---build Path---add external Archiver...選擇jdbc驅(qū)動,點擊確定。
我的項目列表:
3.驅(qū)動已經(jīng)導入,下面我們來寫一個程序驗證一下
import java.sql.*; public class MysqlJdbc { public static void main(String args[]) { try { Class.forName("com.mysql.jdbc.Driver"); //加載MYSQL JDBC驅(qū)動程序 //Class.forName("org.gjt.mm.mysql.Driver"); System.out.println("Success loading Mysql Driver!"); } catch (Exception e) { System.out.print("Error loading Mysql Driver!"); e.printStackTrace(); } try { Connection connect = DriverManager.getConnection( "jdbc:mysql://localhost:3306/test","root","198876"); //連接URL為 jdbc:mysql//服務器地址/數(shù)據(jù)庫名 ,后面的2個參數(shù)分別是登陸用戶名和密碼 System.out.println("Success connect Mysql server!"); Statement stmt = connect.createStatement(); ResultSet rs = stmt.executeQuery("select * from user"); //user 為你表的名稱 while (rs.next()) { System.out.println(rs.getString("name")); } } catch (Exception e) { System.out.print("get data error!"); e.printStackTrace(); } } }
點擊運行程序:
Success loading Mysql Driver! Success connect Mysql server! huzhiheng
出現(xiàn)上面結果,說明你連接數(shù)據(jù)庫成功。
4.可以查看到MySQL里面的內(nèi)容,那我們是不是想往MySQL中插入數(shù)據(jù)呢。
下面的例子,往MySQL的user表中插入100條數(shù)據(jù)
import java.sql.*; public class Myjproject { public static void main(String args[]) { try { Class.forName("com.mysql.jdbc.Driver"); //加載MYSQL JDBC驅(qū)動程序 //Class.forName("org.gjt.mm.mysql.Driver"); System.out.println("Success loading Mysql Driver!"); } catch (Exception e) { System.out.print("Error loading Mysql Driver!"); e.printStackTrace(); } try { Connection connect = DriverManager.getConnection( "jdbc:mysql://localhost:3306/test","root","198876"); int num=100; PreparedStatement Statement=connect.prepareStatement("INSERT INTO user VALUES(?,?)"); for(int i=0;inum;i++) //定義個100次的循環(huán),往表里插入一百條信息。 { Statement.setString(1,"chongshi"+i); Statement.setString(2,"bo"+i); Statement.executeUpdate(); } // } catch (ClassNotFoundException e) { // TODO Auto-generated catch block // System.out.println("An error has occurred:"+e.toString()); // e.printStackTrace(); }catch(SQLException e) { } } }