查看: 1081|回复: 1
|
mysql client ???
[复制链接]
|
|
點做mysql database?
mysql client 是什麼?
2.2 Now, we have to create the two tables (in MySQL) which allows us to run the chat. You can simply create these tables by running these queries from your MySQL client:
## Table structure for table `flash_chat`#DROP TABLE IF EXISTS flash_chat;CREATE TABLE flash_chat ( user_id varchar(37) NOT NULL default '0', chat_data double NOT NULL default '0', chat_message text NOT NULL, KEY user_id(user_id)) TYPE=MyISAM;# --------------------------------------------------------## Table structure for table `flash_chat_useronline`#DROP TABLE IF EXISTS flash_chat_useronline;CREATE TABLE flash_chat_useronline ( user_id char(37) NOT NULL default '0', user_name char(15) NOT NULL default '', user_date double NOT NULL default '0', KEY user_id(user_id)) TYPE=MyISAM;
有冇有可以可以教我點做? |
|
|
|
|
|
|
|
发表于 5-8-2005 04:42 PM
|
显示全部楼层
自己安装来玩吧!
初学者建议安装 IIS+PHP+MySQL+PHPMyAdmin |
|
|
|
|
|
|
| |
本周最热论坛帖子
|