免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1229 | 回复: 7
打印 上一主题 下一主题

求助--关于mysql [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-08 01:04 |只看该作者 |倒序浏览
我想实验一下“架构基于FreeBSD和Postfix的IGENUS Webmail邮件系统”,原文网址为:
http://www.cnfug.org/journal/systems/2006/000118.html
其中有部分是:
建立postfix数据库(注意:数据库名称为postfix),不过我老是出错。
mail# mysql –u root –p
mysql# CREATE DATABASE `postfix` ;
mysql# use postfix;
下面为sql语句:
CREATE TABLE domaininfo (
domain_id int(5) NOT NULL auto_increment,
domain varchar(25) NOT NULL default '',
alias varchar(30) default NULL,
passwd varchar(35) NOT NULL default '',
usernum int(5) NOT NULL default '0',
quota int(11) NOT NULL default '0',
des varchar(30) default NULL,
expire date NOT NULL default '0000-00-00',
active tinyint(1) NOT NULL default '1',
create_time datetime default NULL,
PRIMARY KEY (domain_id),
UNIQUE KEY domain (domain),
KEY domain_id (domain_id)
) TYPE=MyISAM COMMENT='domain information';

出错信息为:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM COMMENT='domain information'' at line 15

请问,TYPE=MyISAM COMMENT='domain information'这句话有什么用,有什么办法可以解决这个问题吗?

论坛徽章:
0
2 [报告]
发表于 2006-05-08 01:22 |只看该作者
原帖由 show007good 于 2006-5-8 01:04 发表
我想实验一下“架构基于FreeBSD和Postfix的IGENUS Webmail邮件系统”,原文网址为:
http://www.cnfug.org/journal/systems/2006/000118.html
其中有部分是:
建立postfix数据库(注意:数据库名称为 ...


我这儿正常:

  1. mysql> CREATE TABLE domaininfo (
  2.     -> domain_id int(5) NOT NULL auto_increment,
  3.     -> domain varchar(25) NOT NULL default '',
  4.     -> alias varchar(30) default NULL,
  5.     -> passwd varchar(35) NOT NULL default '',
  6.     -> usernum int(5) NOT NULL default '0',
  7.     -> quota int(11) NOT NULL default '0',
  8.     -> des varchar(30) default NULL,
  9.     -> expire date NOT NULL default '0000-00-00',
  10.     -> active tinyint(1) NOT NULL default '1',
  11.     -> create_time datetime default NULL,
  12.     -> PRIMARY KEY (domain_id),
  13.     -> UNIQUE KEY domain (domain),
  14.     -> KEY domain_id (domain_id)
  15.     -> ) TYPE=MyISAM COMMENT='domain information';
  16. Query OK, 0 rows affected (0.04 sec)
  17. mysql>
复制代码


会不会是mysql版本不同的原因,你是什么版本?我的是4.0.x的


  1. mysql> status
  2. --------------
  3. /usr/local/bin/mysql  Ver 12.22 Distrib 4.0.26, for unknown-freebsd6.1 (i386)

  4. Connection id:          17236
  5. Current database:       test
  6. Current user:           root@localhost
  7. SSL:                    Not in use
  8. Current pager:          more
  9. Using outfile:          ''
  10. Server version:         4.0.26 CNFUG Optimized
  11. Protocol version:       10
  12. Connection:             Localhost via UNIX socket
  13. Client characterset:    gb2312
  14. Server characterset:    gb2312
  15. UNIX socket:            /tmp/mysql.sock
  16. Uptime:                 17 days 10 hours 5 min 29 sec

  17. Threads: 1  Questions: 86189  Slow queries: 0  Opens: 95  Flush tables: 2  Open tables: 46  Queries per second avg: 0.057
  18. --------------
复制代码

论坛徽章:
0
3 [报告]
发表于 2006-05-08 01:27 |只看该作者
我的mysql 版本是5.0.x,这有什么关系,可以解决吗?

论坛徽章:
0
4 [报告]
发表于 2006-05-08 01:39 |只看该作者
原帖由 show007good 于 2006-5-8 01:27 发表
我的mysql 版本是5.0.x,这有什么关系,可以解决吗?


5.0就不太熟悉了,你试试用下面的语句创建:


  1. CREATE TABLE domaininfo (
  2. domain_id int(5) NOT NULL auto_increment,
  3. domain varchar(25) NOT NULL default '',
  4. alias varchar(30) default NULL,
  5. passwd varchar(35) NOT NULL default '',
  6. usernum int(5) NOT NULL default '0',
  7. quota int(11) NOT NULL default '0',
  8. des varchar(30) default NULL,
  9. expire date NOT NULL default '0000-00-00',
  10. active tinyint(1) NOT NULL default '1',
  11. create_time datetime default NULL,
  12. PRIMARY KEY (domain_id),
  13. UNIQUE KEY domain (domain)
  14. );
复制代码


也只有试试,看能否成功。

论坛徽章:
0
5 [报告]
发表于 2006-05-08 01:49 |只看该作者
不要这句“TYPE=MyISAM COMMENT='domain information';”就可以运行,但这句话起到什么作用了,可以告诉我吗?

论坛徽章:
0
6 [报告]
发表于 2006-05-08 01:56 |只看该作者
原帖由 show007good 于 2006-5-8 01:49 发表
不要这句“TYPE=MyISAM COMMENT='domain information';”就可以运行,但这句话起到什么作用了,可以告诉我吗?


TYPE表示指定使用MyISAM存储内型,COMMENT为注释

论坛徽章:
0
7 [报告]
发表于 2006-05-08 02:01 |只看该作者
大致明白了,谢了。

论坛徽章:
0
8 [报告]
发表于 2006-05-11 01:32 |只看该作者
接下去谁成功配置了?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP