通过服务器的404文件没有找到的错误处理,实现url rewrite的功能
2008年12月28日
没有评论 399 次阅读
404的错误处理页面来实现这个功能 页面代码如下 阅读全文
分类: 数据库
404的错误处理页面来实现这个功能 页面代码如下 阅读全文
需要修改config.inc.php文件中的 $cfg['SQLValidator']['use'] = FALSE; // Make the SQL Validator available $cfg['SQLValidator']['username'] = ‘root’; // If you have a custom username, specify it here (defaults to anonymous) $cfg['SQLValidator']['password'] = ’sa’;...阅读全文
–建立表: CREATE TABLE [dbo].[TEST] ( [FID] [int] IDENTITY (1, 1) NOT NULL , [F1] [datetime] NULL , [F2] [int] NULL ) ON [PRIMARY] GO CREATE TABLE [dbo].[TEST1] ( [id] [int] IDENTITY (1, 1) NOT NULL , [F1] [datetime] NULL ) ON [PRIMARY] GO –写入测试数据: insert test(f1,f2) valu...阅读全文