一、檔案展示:
注意:我們的
刷庫語句
放在c:\db\all下面
,後期cmd操作要進入該目錄下
二、檔案內容:
1. initall.sql 檔案內容:
2.initdatabase.sql 檔案內容:
drop database if exists test;
create database test default character set utf8;
3.initdbuser.sql 檔案內容:在第四步驟中用使用者名稱dfbb,密碼dfbb登入客戶端
grant all privileges on *.* to 'dfbb'@'localhost' identified by 'dfbb';
grant all privileges on *.* to 'dfbb'@'%' identified by 'dfbb';
4.建表語句,建約束,建索引,插資料啥的
sql語句自己就隨意寫寫,這裡就不做交代了
三、cmd客戶端操作
microsoft windows [版本
10.0.16299.192]
(c) 2017 microsoft corporation。保留所有權利。
c:\users\administrator>cd c:\db\all
c:\db\all>mysql -u root -p
enter password: ****
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 27
server version: 5.7.17 mysql community server (gpl)
oracle is a registered trademark of oracle corporation and/or its
affiliates. other names may be trademarks of their respective
owners.
type 'help;' or '\h' for help. type '\c' to clear the current input statement.
mysql> source initall.sql
query ok, 40 rows affected (3.96 sec)
query ok, 1 row affected (0.03 sec)
query ok, 0 rows affected, 1 warning (0.16 sec)
query ok, 0 rows affected, 1 warning (0.00 sec)
database changed
query ok, 0 rows affected, 1 warning (0.00 sec)
query ok, 0 rows affected, 1 warning (0.00 sec)
query ok, 0 rows affected, 1 warning (0.00 sec)
query ok, 0 rows affected, 1 warning (0.00 sec)
query ok, 0 rows affected, 1 warning (0.00 sec)
query ok, 0 rows affected, 1 warning (0.00 sec)
四、客戶端訪問
MySQL資料庫操作例項
由於課程大實驗需要使用c 操作mysql資料庫,經過一番研究終於成功實現vs2008中與mysql的連線。環境設定 安裝完mysql之後,將安裝目錄中的include目錄下的libmysql.lib檔案拷到vs2008安裝目錄中的vc lib 下,然後在 專案 選項 c c 常規 中的附加包含目錄 ...
MySQL資料庫操作例項 C
環境設定 安裝完mysql之後,將安裝目錄中的include目錄下的libmysql.lib檔案拷到vs2008安裝目錄中的vc lib 下,然後在 專案 選項 c c 常規 中的附加包含目錄 以及 鏈結器 常規 中的附加庫目錄中 加入 c mysql include 並且在 鏈結器 輸入 中的附加...
python操作mysql資料庫例項
python usr bin env python coding utf 8 importmysqldb 建立和資料庫系統的連線 conn mysqldb.connect host localhost user root passwd longforfreedom 獲取操作游標 cursor con...