以下是基於xampp 1.6.1 (MySQL 5.0.37) 版本
Connect to MySQL (初安裝完成時, 帳號root, 無密碼)
c:\xampp\mysql\bin>mysql -u root |
建立資料庫
database name: demo, 設定預設編碼為Big5 (預設編碼可以略過不設)
mysql> CREATE DATABASE demo DEFAULT CHARACTER SET big5 COLLATE big5_chinese_ci; |
設定資料庫可自遠端存取的帳號
帳號:andy
密碼:password
來自: 192.168.182.1
mysql> GRANT ALL ON demo.* TO “andy”@”192.168.182.1” IDENTIFIED BY 'password'; |
create table: MyClass
參考自:http://c.biancheng.net/cpp/html/1449.html
欄位名 | 數位類型 | 數據寬度 | 是否為空 | 是否主鍵 | 自動增加 | 預設值 |
id | int | 4 | 否 | primary key | auto_increment | |
name | char | 20 | 否 | |||
sex | int | 4 | 否 | 0 | ||
degree | double | 16 | 是 |
mysql> create table MyClass( |
塞點資料進去
mysql> set names big5; #設定編碼平常應該可以略過 mysql> insert into MyClass VALUES ('13','王大明','1',''); |
insert into之前, 如果沒設定編碼就會變成下面這樣
END
留言
張貼留言
歡迎留言討論指教~~