8月20日:增加产品评论和文章url自定义,数据库更新运行代码:
[复制到剪贴板]CODE:
alter table product add comments_style int default 0;
alter table information add url varchar(150)
错误:
运行中出现以下错误:
1:字段 'comments_style' 已经存在于表 'product' 中。
2:字段 'url' 已经存在于表 'information' 中。
返回
9月20日:采用ISAPI+配置重写规则方式来支持html的伪静态,提供了程序运行速度,同时增加新ASPX扩展名的URL重写(IIS默认支持),数据库更新运行代码
[复制到剪贴板]
CODE:
alter table information add download_beizhu nvarchar(100);
update information set download_beizhu=filesize;
alter table information drop column filesize;
alter table login alter column loginpass nvarchar(200);
alter table member alter column userpassword nvarchar(200)
错误:运行中出现以下错误:
1:字段 'download_beizhu' 已经存在于表 'information' 中。
2:至少一个参数没有被指定值。
3:在表 'information' 中没有字段 'filesize'。
4:由于表 'login' 正被别的用户或进程使用,数据库引擎无法锁定它。
返回